我在哪里可以找到org.apache.common库



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

您可以从 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 搜索开源库。如果您在那里找到工件,您将有一个指向作者网站和许可条款的链接。

看看这个网站:findjar.com。

最新更新