我看过很多关于人们在尝试导入Apache Commons Math 3时无法正确编译Java文件的帖子,到目前为止这些解决方案对我没有帮助,我不知道我在做什么做错了。
在一个文件中,我使用此命令导入Apache库:
{
user_id: 1,
message: "Hi there!",
created: "01-01-2016"
},
{
user_id: 1,
message: "Hi there again!",
created: "01-03-2016"
},
{
user_id: 2,
message: "Howdy!",
created: "01-05-2016"
},
{
user_id: 2,
message: "Hi there!",
created: "01-01-2016"
}
我在Linux Mint上运行以下命令:
import org.apache.commons.math3;
但我每次都会收到此错误:
javac -classpath ./commons-math3-3.6/commons-math3-3.6.jar:. db/*.java
有人能帮助我吗?