添加到文件时,数据未显示在recyclerview中

时间:2018-05-25 10:28:12

标签: android json file android-recyclerview

我正在尝试将 json数据存储到该文件中。这是用于创建目录和文件的代码。

      public void filecreation() throws IOException {
       File mediaStorageDir = new File(getActivity().getFilesDir() + "/" + 
      "Zerribelum");
    if (!mediaStorageDir.exists()) {
        if (!mediaStorageDir.mkdirs()) {
            Log.d("App", "failed to create directory");
            //  return null;
        } else {
            Log.d("Apppppp", "create directory");
            File textfolder = new File(mediaStorageDir, "Text");
            if (!textfolder.exists()) {
                textfolder.mkdirs();
                File newtext = new File(textfolder, "dummy.txt");
                stream = new FileOutputStream(newtext);
                bw = new BufferedWriter(new OutputStreamWriter(stream));

            }
            File imagefolder = new File(mediaStorageDir, "Image");
            if (!imagefolder.exists()) {
                imagefolder.mkdirs();
            }
            File videofolder = new File(mediaStorageDir, "Video");
            if (!videofolder.exists()) {
                videofolder.mkdirs();
            }
        }

    }
}

我想把json数据放到文件中。

      try {
        JSONArray mJsonTopicArray = mJsonObject.getJSONArray(AppConstants.APIKeys.TOPICS_LIST);
        for (int i = 0; i < mJsonTopicArray.length(); i++) {
            Topics mTopics = new Topics();
            mTopics.setId(mJsonTopicArray.getJSONObject(i).getString(AppConstants.APIKeys.ID));
            mTopics.setTitle(mJsonTopicArray.getJSONObject(i).getString(AppConstants.APIKeys.TOPICS));
            mTopics.setImage(mJsonTopicArray.getJSONObject(i).getString(AppConstants.APIKeys.TOPICS_IMAGE));
            mTopics.setDescription(mJsonTopicArray.getJSONObject(i).getString(AppConstants.APIKeys.DESCRIPTION));

            mTopicsArrayList.add(mTopics);
            bw.write(mJsonTopicArray.getJSONObject(i).getString(AppConstants.APIKeys.DESCRIPTION));
            bw.newLine();
        }
          bw.close();
         mCategoryListRecyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));
    mCategoryListRecyclerView.setHasFixedSize(true);
    mCategoryListRecyclerView.setAdapter(new ParallaxRecyclerAdapter(context, HomeFragment.this, mTopicsArrayList));
    } catch (JSONException e) {
        e.printStackTrace();
    } catch (Exception e) {
        e.printStackTrace();
    }

问题是,如果我添加bw.writebw.close()行,数据将显示在 recyclerview 中。但是当我添加这些行时,数据会添加到文件中,但不会显示在recylcer视图中。我希望两者都完成。会出现什么问题?

  

注意:public FileOutputStream stream;

     

public BufferedWriter bw;初始化。

2 个答案:

答案 0 :(得分:0)

检查你的堆栈跟踪,你的代码必须崩溃,你因为try catch而没有注意到它

附加调试器并在初始化适配器后检查arraylist中的项目。如果项目存在,它将起作用

答案 1 :(得分:0)

解决了,问题是因为Nullpointer异常。所以使用try catch处理。

           try {
                bw.write(mJsonTopicArray.getJSONObject(i).getString(AppConstants.APIKeys.TOPICS));
                bw.newLine();
            } catch (IOException e) {
                e.printStackTrace();
            } catch (JSONException e) {
                e.printStackTrace();
            } catch (NullPointerException e) {
                e.printStackTrace();
            } catch (Exception e) {
                e.printStackTrace();
            }