-1

アプリケーションを完成させました。完成すると、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. が発生します。何が起きているか知っている人はいますか?

4

1 に答える 1

0
for (File file : list) {
  jsonList.put(new JSONObject(readFile(file));
}

String readFile(File file) {
....
}
于 2011-08-10T08:12:57.913 に答える