こんにちは、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)