我正在做一个小项目,该项目将json文件保存到设备缓存中。 在我的Home_fragmen上,我从网络上的文件中加载json并保存文件。
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = response.getJSONArray("photos");
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject hit = jsonArray.getJSONObject(i);
String id = hit.getString("id");
mlist.add(new items(id));
}
mAdapter = new main_adapter(getActivity(), mlist);
mRecyclerView.setAdapter(mAdapter);
// Cashing json file
jsonFile= response.toString();
cacheJson(jsonFile);
}
private void cacheJson(String data) {
try {
OutputStreamWriter outputStreamWriter = new OutputStreamWriter(getActivity().openFileOutput("jsontxt.txt", Context.MODE_PRIVATE));
outputStreamWriter.write(data);
outputStreamWriter.close();
} catch (IOException e) {
e.printStackTrace();
}
}
这是我用来从缓存中读取数据的代码
private String readJson() {
String jsonArray = "";
try {
InputStream inputStream = getActivity().openFileInput("jsontxt.txt");
if ( inputStream != null) {
InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
String receivingString = "";
StringBuilder stringBuilder = new StringBuilder();
while ((receivingString = bufferedReader.readLine()) != null) {
stringBuilder.append(receivingString);
}
inputStream.close();
jsonArray = stringBuilder.toString();
}
} catch (FileNotFoundException e) {
Log.e(TAG, "File not found: " + e.toString());
} catch (IOException e) {
Log.e(TAG, "Can not read file: " + e.toString());
}
return jsonArray;
}
所有这些工作都在我的主片段上进行,因为所有片段都拥有所有内容。...现在我要做的是从另一个片段读取缓存,即一个新片段。
我尝试执行这些操作,但是没有用。
Home_fragment jsonFile = new Home_fragment ();
String s = jsonFile.cachejson();
Log.e(TAG, "JSON FILE: " + s);
我的问题是我如何从辅助片段读取访问我家庭片段上的readJson()。
答案 0 :(得分:0)
使方法独立于片段的上下文(getActivity),并将该上下文作为参数传递。然后将该方法放在两个片段中的一个公共可访问对象上,然后您可以从任何地方访问它。
答案 1 :(得分:0)
步骤1: 在片段1中,将您的json结果放入Bundle
Bundle bundle = new Bundle();
bundle.putString("key","abc"); // Put anything what you want
Fragment_2 fragment2 = new Fragment_2();
fragment2.setArguments(bundle);
getFragmentManager()
.beginTransaction()
.replace(R.id.content, fragment2)
.commit();
步骤2: 在片段2
Bundle bundle = this.getArguments();
if(bundle != null){
// handle your code here.
}
第3步 创建方法readjson作为对读取包参数的全局访问
public static String readJson(String jsonStr) {
try {
// put your code
}
} catch (FileNotFoundException e) {
Log.e(TAG, "File not found: " + e.toString());
} catch (IOException e) {
Log.e(TAG, "Can not read file: " + e.toString());
}
return jsonArray;
}
我希望有帮助