アプリケーションを完成させました。完成すると、2 つの json ファイルが作成されます。それらを別のJavaクラスで組み合わせる必要があるので、このようなことを試しました
このコードを使用しようとすると
File dirSrc = new File(mydir);
File[] list = dirSrc.listFiles();
JSONArray jsonList = new JSONArray();
for (File file : list) {
try {
jsonList.put(new JSONObject(readFile(file)));
} catch (JSONException e) {
e.printStackTrace();
}
}
System.out.println(jsonList);
private String readFile(File file) {
String finalOutput = null;
try {
BufferedReader in = new BufferedReader(new FileReader(file));
String str;
while ((str = in.readLine()) != null) {
finalOutput = str;
}
in.close();
} catch (IOException e) {
}
return finalOutput;
}
org.json.JSONException: Value +k�V��䱐*ʜ� of type java.lang.String cannot be convert to JSONObject. が発生します。何が起きているか知っている人はいますか?