爲什麼我每次編譯時都會收到「使用未檢查或不安全的操作」錯誤?代碼有什麼問題?我從本教程http://www.mkyong.com/java/json-simple-example-read-and-write-json/「使用未經檢查或不安全的操作」
import java.io.FileWriter;
import java.io.IOException;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
public class JsonSimpleExample {
public static void main(String[] args) {
JSONObject obj = new JSONObject();
obj.put("name", "mkyong.com");
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);
}
}
這是一個警告,而不是一個錯誤。這真的沒關係。它來自哪條線? –
看起來像'org.json.simple'庫不是通用的。 'JSONArray'類擴展了一個未參數化的'ArrayList',這可能是警告來自的地方。 –