В моем приложении я сохраняю таблицу как изображение.Пользователь может удалить файл (изображение) после его открытия. Я использую следующий код для открытия изображения, когда пользователь нажимает «Открыть»:
File directory=new File(extStorageDirectory,File.separator+"myDirectory"+File.separator);
File fileInDirectory=new File(directory, fileName);
//I save the opened file's path n "filePath"
filePath=fileInDirectory.getAbsolutePath();
Bitmap bitmap = BitmapFactory.decodeFile(fileInDirectory.getAbsolutePath());
ImageView ivv=(ImageView) findViewById(R.id.imageView);
ivv.setImageBitmap(bitmap);
//I enable the delete button
deleteFile.setEnabled(true);
Файл открывается без каких-либо проблем.И когда пользователь нажимает «Удалить», я делаю следующее:
//I create a file using the filePath I saved earlier
File file=new File(filePath);
file.delete();
Но он не удаляет файл из SDCard.Я подтвердил, и filePath правильный.Я также попробовал функцию deleteFile (String):
deleteFile(fileNeme);
//fileName is the name of my file that I save earlier and I've verified it by printing it and there is no problem.
Я поместил
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
в мой файл манифеста.Поэтому я не думаю, что это проблема прав, так как я могу писать и читать с SDCard.
Есть ли способ сделать это?сохраните файл.
this.save.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
AlertDialog.Builder alert=new AlertDialog.Builder(LensCalculator.this);
alert.setTitle("Save");
alert.setMessage("Enter file name");
final EditText input=new EditText(MyActivity.this);
alert.setView(input);
alert.setPositiveButton("OK", new DialogInterface.OnClickListener(){
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
TableView table=(TableView) findViewById(R.id.tableId);
table.setDrawingCacheEnabled(true);
Bitmap b=table.getDrawingCache();
Canvas canvas=new Canvas(b);
canvas.drawBitmap(b, 0f, 175f, null);
OutputStream outStream = null;
String fileName=input.getText().toString();
File directory =new File(extStorageDirectory+File.separator+"myDirectory"+File.separator);
if(!directory.mkdir())
directory.mkdir();
File file = new File(directory, fileName);
try {
outStream = new FileOutputStream(file);
b.compress(Bitmap.CompressFormat.PNG, 100, outStream);
FileOutputStream fOut=openFileOutput("public.dat", Context.MODE_PRIVATE|Context.MODE_APPEND);
OutputStreamWriter osw=new OutputStreamWriter(fOut);
osw.write(fileName+"\n");
osw.close();
fOut.close();
outStream.close();
table.destroyDrawingCache();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});