我想从网页存储一些离线数据。我正在尝试使用Json.i想要在平板电脑和智能手机中使用此网页。任何人都可以帮我添加jar
import java.io.FileWriter;
import java.io.IOException;
import com.sun.
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
public class Jsonnn {
public static void main(String[] args) {
JSONObject obj = new JSONObject();
obj.put("name", "asdf");
obj.put("age", new Integer(100));
JSONArray list = new JSONArray();
list.add("msg 1");
list.add("msg 2");
list.add("msg 3");
obj.put("messages", list);
try {
FileWriter file = new FileWriter("c:\\test.json");
file.write(obj.toJSONString());
file.flush();
file.close();
} catch (IOException e) {
e.printStackTrace();
}
System.out.print(obj);
}
}