我需要json包, 这些是我需要解决的进口:
import org.json.simple.JSONObject;
//import net.sf.json.JSONObject;
class json
{
public static void main(String[] args)
{
JSONObject obj=new JSONObject();
obj.put("name","foo");
obj.put("num",new Integer(100));
obj.put("balance",new Integer(1000));
obj.put("is_vip",new Boolean(true));
System.out.print(obj);
}
}
我从google code下载了json包(json-simple-1.1.1.jar)。现在我不知道如何在我的fedora 14中安装它。我使用的是java版本1.6.0_20。我可以为这个java版本下载任何特定版本的json吗?
我尝试使用命令
执行它java -jar json-simple-1.1.1.jar
但是我收到了一条消息
"无法从json-simple-1.1.1.jar加载Main-Class清单属性"
答案 0 :(得分:0)
您说您正在运行该应用程序
java json
尝试在类路径中指定jar:
java -cp /path/to/json-simple-1.1.1.jar json
其中/path/to/json-simple-1.1.1.jar
是jar库的路径
答案 1 :(得分:0)
我刚刚使用了它帮助我的导出语句
[root @ foss json] #export CLASSPATH = / root / Desktop / json-simple-1.1.1.jar:$ CLASSPATH