您好我有一个项目应该将 JSON 数组保存到内部存储中。这是我的代码:
public void createFile(String data){
try{
FileOutputStream fos = openFileOutput("userObj", Context.MODE_PRIVATE);
fos.write(data.getBytes());
fos.close();
Log.d(TAG, "Successfully created userObj file.");
}catch (Exception e){
Log.d(TAG, "Failed to create userObj " + e);
}
}
但是当我打电话时,createFile(response);
我得到了
java.lang.NullPointerException at android.content.ContextWrapper.openFileOutput(ContextWrapper.java:180)