FileOutputStream fileOutputStream = null;
try {
fileOutputStream = new FileOutputStream("/sdcard/" + dataName);
fileOutputStream.write(data);
} catch (Exception e) {
cameraRelease();
} finally {
if (fileOutputStream != null) {
fileOutputStream.close();
}
}
で、NullPointerでおっこっていたのだが(2.1ではおけ)
2.2からは、uses-permissionに、WRITE_EXTERNAL_STRAGE を指定しなければなりません。
トホホ・・・
0 件のコメント:
コメントを投稿