这个问题在这里已经有答案了:
在类路径中包含jar文件(6个答案)
4个月前关门了。
我下载了json-20200518.jar(从这里:https://mvnrepository.com/artifact/org.json/json/20200518),并将其放在我的bin文件夹(javac.exe所在的文件夹)中,该文件夹已添加到路径变量中。
my client.java文件具有:
import org.json.simple.JSONObject;
在cmd中,我运行:
javac -cp json-20200518.jar client.java
我得到一个错误:
client.java:3: error: package org.json.simple does not exist
import org.json.simple.JSONObject;
我要如何处理jar文件才能使其正常工作?
1条答案
按热度按时间sg2wtvxw1#
在指定的maven jar文件链接中
JSONObject
班级是org.json.JSONObject
.尝试将包名称从更改为
org.json.simple.JSONObject
至org.json.JSONObject
它将成功编译。