您好我正在尝试使用来自Apache Commons Math的标准差库。我无法导入库,因为我在下载zip后找不到jar文件。我错过了一些太明显的东西吗?
答案 0 :(得分:2)
打开Download Commons Math页面并下载当前的二进制文件版本。目前这是commons-math3-3.0-bin.zip。从您的评论中可以看出,您下载了包含来源的档案。
答案 1 :(得分:0)
确保jar位于编译器的构建路径中How to add Jars to your build path in eclipse
利润???
你确定jar在类路径中吗?
答案 2 :(得分:-1)
获取构建+依赖管理工具,您将不会遇到这样的问题。我建议你使用apache buildr(quick start)和这样的buildr文件:
repositories.remote << 'http://www.ibiblio.org/maven2'
define 'killer-app' do
project.version = '0.1.0'
compile.with 'org.apache.commons:commons-math:jar:2.0'
package :jar
end