File file = new File("D:\\final\\movie.json.1");
String resp = readFile(file);
JSONArray array = new JSONArray(resp);
但它作为以下例外给出:
Exception in thread "main" org.json.JSONException: Missing value at 1 [character 2 line 1]
movie.json.1: 示例文本:
[{" ID":" episode_45747"" RESOURCEID":" 45747""!DOCTYPE&#34 ;: "插曲"" uniqueName":" 45747""区域设置":["主机&#34],&#34 ; filter_locale":["主机&#34]," filter_device":
这有效如果文本从.json.1
文件复制到.txt
文件。
请帮我提取这种类型的扩展文件。
答案 0 :(得分:0)
您可以尝试使用JSON解析器吗?
JSONParser parser = new JSONParser();
JSONArray array = (JSONArray) parser.parse(new FileReader("D:\\final\\movie.json.1"));