在哪里可以找到org.apache.com通用库

时间:2018-06-22 15:57:23

标签: java apache import package

我需要org.apache.commons.math3.stat.descriptive.DescriptiveStatistics的库 这意味着我需要org.apache.common库。在哪里可以找到或下载库?

2 个答案:

答案 0 :(得分:2)

您可以从Apache Commons Math项目下载二进制文件:

http://commons.apache.org/proper/commons-math/

http://commons.apache.org/proper/commons-math/download_math.cgi

另一种方法是将项目转换为Maven并在pom.xml中添加Maven依赖项。

Maven链接: https://mvnrepository.com/artifact/org.apache.commons/commons-math3/3.0

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math3 -->
<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-math3</artifactId>
    <version>3.0</version>
</dependency>

Maven将在存储库中为您找到并自动下载。

您可以在https://mvnrepository.com上搜索开源库。如果您在此处找到工件,则将有一个指向作者网站和许可条款的链接。

答案 1 :(得分:0)

看看这个站点:findjar.com