如何使用Maven从网上下载Excel文件?

时间:2017-10-11 13:49:26

标签: java excel maven pom.xml xlsx

我正在尝试使用以下插件在我项目的 pom.xml 文件中下载 .xlsx 文件:

    <plugin>
        <groupId>com.googlecode.maven-download-plugin</groupId>
        <artifactId>download-maven-plugin</artifactId>
        <version>1.3.0</version>
        <executions>
            <execution>
                <id>getExcelFile</id>
                <phase>generate-sources</phase>
                <goals>
                    <goal>wget</goal>
                </goals>
                <configuration>
                    <url>http://example-url.xlsx</url>
                    <outputFileName>file.xlsx</outputFileName>
                <outputDirectory>${Dir}</outputDirectory>
                </configuration>
            </execution>
        </executions>
    </plugin>

但是,文件在下载后会损坏并且为空。这不是文件的问题,因为每当我从网上下载并手动打开它时,它都没问题。

有人可以帮帮我吗?

0 个答案:

没有答案