我是靠谱客的博主 儒雅小懒猪,最近开发中收集的这篇文章主要介绍android系统下文件擦除,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

上次做的项目中包括文件擦除部分,一般删除的文件可以被恢复,而擦除过的文件因为写入了一些其他的数据,所以无法被恢复。

下面请看带代码:

Clear.java

package com.huangcheng.smash;
import java.io.File;
public class Clear {
public static void main(String[] args) {
SmashFile s=new SmashFile();
File file=new File("HTEDFS.txt");
s.smashing(file);
file.delete();
}
}


文件擦除类,SmashFile.java

package com.huangcheng.smash;
import java.io.*;
import java.util.*;
/**
*
* @author Administrator
*/
public class SmashFile {
/** Creates a new instance of SmashFile */
private Random rData = new Random();
private DataOutputStream smash;
private byte[] data;
private long temp;
private static boolean flag;
protected boolean getFlag() {
return flag;
}
protected void smashing(File sFile) {
temp = sFile.length();
data = new byte[1024];
flag = sFile.canWrite();
if (flag == true) {
try {
smash = new DataOutputStream(new BufferedOutputStream(
new FileOutputStream(sFile)));
smash.writeByte(0);
smash = new DataOutputStream(new BufferedOutputStream(
new FileOutputStream(sFile, false)));
for (int i = 1; i <= temp / 1024; i++) {
rData.nextBytes(data);
smash.write(data);
}
smash.close();
} catch (IOException e) {
System.out.println("IOException: " + e);
}
sFile.deleteOnExit();
}
}
}


希望对大家有帮助!

 

最后

以上就是儒雅小懒猪为你收集整理的android系统下文件擦除的全部内容,希望文章能够帮你解决android系统下文件擦除所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部