当我的设备旋转时,我已经开始尝试在我的视图中保留一些数据。由于一段时间后实施此操作,我的应用程序将因错误而崩溃:
@@@ ABORTING: INVALID HEAP ADDRESS IN dlfree addr=0x00000156
Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 20787 (FinalizerDaemon)
每次我尝试重新打开应用程序都会崩溃后,我会立即收到同样的错误,直到我卸载应用程序。
有谁知道是什么导致了这个错误?
这是我用来保存数据的代码:
onDestory()
:
System.out.println("Saving");
ArrayList<Path> strokes = paintCanvas.strokes;
ArrayList<Integer> colors = paintCanvas.colors;
SharedPreferences settings = getSharedPreferences("colors", MODE_PRIVATE);
settings.unregisterOnSharedPreferenceChangeListener(listener);
/**Write Colors**/
try
{
FileOutputStream os = openFileOutput("drawing.dat", MODE_PRIVATE);
ObjectOutputStream output = new ObjectOutputStream(os);
output.writeObject(colors);
output.close();
}
catch (Exception e)
{
e.printStackTrace();
}
/**Write Paths**/
try
{
Gson gson = new Gson();
File file = getFileStreamPath("paths.txt");
FileWriter writer = new FileWriter(file);
BufferedWriter output = new BufferedWriter(writer);
for(Path p : strokes)
{
String s = gson.toJson(p);
s = s + "\n";
output.write(s);
}
output.close();
}
catch (Exception e)
{
e.printStackTrace();
//System.out.println(e.getMessage());
}
在onCreate()
:
//Try Load here!
/**Read Colors**/
try
{
ArrayList<Integer> colors;
ArrayList<Path> strokes;
FileInputStream ins = openFileInput("drawing.dat");
ObjectInputStream reader = new ObjectInputStream(ins);
colors = (ArrayList<Integer>)reader.readObject();
paintCanvas.colors = colors;
System.out.println("Colors Loaded");
}
catch (Exception e)
{
e.printStackTrace();
}
/**Read Paths**/
try
{
FileInputStream fis = openFileInput("paths.txt");
InputStreamReader isr = new InputStreamReader(fis);
BufferedReader bufferedReader = new BufferedReader(isr);
StringBuilder sb = new StringBuilder();
String line;
Gson gson = new Gson();
ArrayList<Path> paths = new ArrayList<Path>();
while ((line = bufferedReader.readLine()) != null)
{
paths.add(gson.fromJson(line,Path.class));
}
paintCanvas.strokes = paths;
paintCanvas.currentStroke = paintCanvas.strokes.size() - 1;
System.out.println("Paths Loaded");
}
catch (Exception e)
{
e.printStackTrace();
}