下面是http://www.tutorialspoint.com/json/json_quick_guide.htm
import org.json.simple.JSONObject;
class JsonEncodeDemo {
public static void main(String[] args){
JSONObject obj = new JSONObject();
obj.put("name", "foo");
obj.put("num", new Integer(100));
obj.put("balance", new Double(1000.21));
obj.put("is_vip", new Boolean(true));
System.out.print(obj);
}
}
我遇到以下错误:错误:在类JsonEncodeDemo中找不到主方法,请将主方法定义为:public static void main(String[]args)或者JavaFX应用程序类必须扩展JavaFX.application.application
问题出在哪里?
非常感谢。
您能用编写代码来编译和运行程序吗?我想可能是打字错误。