未找到主要方法 - JSON相关

时间:2016-07-25 07:09:42

标签: java json methods main

我正在关注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类中找不到主方法,请将main方法定义为:    public static void main(String [] args) 或者JavaFX应用程序类必须扩展javafx.application.Application

什么似乎是问题?

非常感谢提前。

1 个答案:

答案 0 :(得分:0)

你可以编写代码来编译和运行你的程序吗? 我想可能会有拼写错误。