7 changed files with 74 additions and 0 deletions
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
@ -0,0 +1,13 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<project version="4"> |
||||
|
<component name="CompilerConfiguration"> |
||||
|
<annotationProcessing> |
||||
|
<profile name="Maven default annotation processors profile" enabled="true"> |
||||
|
<sourceOutputDir name="target/generated-sources/annotations" /> |
||||
|
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" /> |
||||
|
<outputRelativeToContentRoot value="true" /> |
||||
|
<module name="crawler_MVC" /> |
||||
|
</profile> |
||||
|
</annotationProcessing> |
||||
|
</component> |
||||
|
</project> |
||||
Binary file not shown.
|
@ -0,0 +1,34 @@ |
|||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
||||
|
https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
|
|
||||
|
<modelVersion>4.0.0</modelVersion> |
||||
|
|
||||
|
<groupId>com.crawler</groupId> |
||||
|
<artifactId>crawler_MVC</artifactId> |
||||
|
<version>1.0</version> |
||||
|
|
||||
|
<properties> |
||||
|
<maven.compiler.source>17</maven.compiler.source> |
||||
|
<maven.compiler.target>17</maven.compiler.target> |
||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
||||
|
</properties> |
||||
|
|
||||
|
<dependencies> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>org.jsoup</groupId> |
||||
|
<artifactId>jsoup</artifactId> |
||||
|
<version>1.17.2</version> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>org.knowm.xchart</groupId> |
||||
|
<artifactId>xchart</artifactId> |
||||
|
<version>3.8.8</version> |
||||
|
</dependency> |
||||
|
|
||||
|
</dependencies> |
||||
|
|
||||
|
</project> |
||||
@ -0,0 +1 @@ |
|||||
|
<html><body><h1>Movie Report</h1><table border='1'><tr><th>Country</th><th>Count</th></tr><tr><td> 美国 英国 </td><td>2</td></tr><tr><td> 中国大陆 中国香港 </td><td>1</td></tr><tr><td> 英国 意大利 中国大陆 法国 </td><td>1</td></tr><tr><td> 意大利 </td><td>2</td></tr><tr><td> 法国 美国 </td><td>1</td></tr><tr><td> 中国香港 </td><td>1</td></tr><tr><td> 美国 英国 加拿大 </td><td>1</td></tr><tr><td> 印度 </td><td>1</td></tr><tr><td> 日本 </td><td>1</td></tr><tr><td> 韩国 </td><td>1</td></tr><tr><td> 法国 </td><td>1</td></tr><tr><td> 美国 </td><td>10</td></tr><tr><td> 中国香港 中国大陆 </td><td>1</td></tr><tr><td> 法国 瑞士 德国 </td><td>1</td></tr></table><br><img src='chart.png'></body></html> |
||||
Loading…
Reference in new issue