【问题标题】:Where can I find org.apache.common libraries我在哪里可以找到 org.apache.common 库
【发布时间】:2018-06-22 15:57:22
【问题描述】:

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

【问题讨论】:

标签: java apache import package


【解决方案1】:

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

【讨论】:

    【解决方案2】:

    看看这个网站:findjar.com

    【讨论】:

      猜你喜欢
      • 2013-10-17
      • 1970-01-01
      • 1970-01-01
      • 2013-05-17
      • 2014-07-16
      • 2012-05-30
      • 2013-07-13
      • 2012-06-05
      • 2011-04-24
      相关资源
      最近更新 更多