如何删除存储在缓存中的文件? (android)
How do I delete a file stored in cache? (android)
我无法删除存储在缓存中的文件。我出于多种目的使用缓存。我正在阅读和写作但无法删除。有人可以帮我解决这个问题吗?
//write
public static void writeObject(Context context, String key, Object object)
throws IOException {
Log.d("Cache", "WRITE: context");
FileOutputStream fos = context.openFileOutput(key, Context.MODE_PRIVATE);
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(object);
oos.close();
fos.close();
}
//read
public static Object readObject(Context context, String key) throws IOException,
ClassNotFoundException {
FileInputStream fis = context.openFileInput(key);
ObjectInputStream ois = new ObjectInputStream(fis);
Object object = ois.readObject();
return object;
}
//delete
public static void clearCahe(String key) throws IOException,ClassNotFoundException {
File file = new File(key);
file.delete();
}
使用它来清除应用程序数据。
public void clearApplicationData()
{
File cache = getCacheDir();
File appDir = new File(cache.getParent());
if (appDir.exists()) {
String[] children = appDir.list();
for (String s : children) {
if (!s.equals("lib")) {
deleteDir(new File(appDir, s));Log.i("TAG", "**************** File /data/data/APP_PACKAGE/" + s + " DELETED *******************");
}
}
}
}
public static boolean deleteDir(File dir)
{
if (dir != null && dir.isDirectory()) {
String[] children = dir.list();
for (int i = 0; i < children.length; i++) {
boolean success = deleteDir(new File(dir, children[i]));
if (!success) {
return false;
}
}
}
return dir.delete();
}
文件
与缓存目录一样,您的应用程序也有一个用于保存文件的特定于应用程序的目录。此目录中的文件将一直存在,直到应用程序明确删除它们或应用程序被卸载。您通常使用 Context.getFilesDir()
访问此目录。这可以在应用程序信息屏幕上显示为各种内容,但在您的屏幕截图中是 "USB Storage Data"。
注意:如果要显式放置在外部媒体(通常是 SD 卡)上,可以使用 Context.getExternalFilesDir(String type)
.
简单缓存管理器:
public class CacheManager {
private static final long MAX_SIZE = 5242880L; // 5MB
private CacheManager() {
}
public static void cacheData(Context context, byte[] data, String name) throws IOException {
File cacheDir = context.getCacheDir();
long size = getDirSize(cacheDir);
long newSize = data.length + size;
if (newSize > MAX_SIZE) {
cleanDir(cacheDir, newSize - MAX_SIZE);
}
File file = new File(cacheDir, name);
FileOutputStream os = new FileOutputStream(file);
try {
os.write(data);
}
finally {
os.flush();
os.close();
}
}
public static byte[] retrieveData(Context context, String name) throws IOException {
File cacheDir = context.getCacheDir();
File file = new File(cacheDir, name);
if (!file.exists()) {
// Data doesn't exist
return null;
}
byte[] data = new byte[(int) file.length()];
FileInputStream is = new FileInputStream(file);
try {
is.read(data);
}
finally {
is.close();
}
return data;
}
private static void cleanDir(File dir, long bytes) {
long bytesDeleted = 0;
File[] files = dir.listFiles();
for (File file : files) {
bytesDeleted += file.length();
file.delete();
if (bytesDeleted >= bytes) {
break;
}
}
}
private static long getDirSize(File dir) {
long size = 0;
File[] files = dir.listFiles();
for (File file : files) {
if (file.isFile()) {
size += file.length();
}
}
return size;
}
}
注意:缓存的目的是减少网络流量activity,
长流程,并在您的应用中提供响应式 UI。
参考:When to clear the cache dir in Android?.
context.openFileOutput(key
将文件写入内存。您可以使用 getFilesDir() 找到的路径看起来像 /data/data/<yourpackagename>/files
.
因此,如果您想删除文件 'key',您必须将 File file = new File(path)
的路径设置为 String path = getFilesDir().getAbsolutePath() + "/" + key;
。
并使用file.exists()检查文件是否存在!
我无法删除存储在缓存中的文件。我出于多种目的使用缓存。我正在阅读和写作但无法删除。有人可以帮我解决这个问题吗?
//write
public static void writeObject(Context context, String key, Object object)
throws IOException {
Log.d("Cache", "WRITE: context");
FileOutputStream fos = context.openFileOutput(key, Context.MODE_PRIVATE);
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(object);
oos.close();
fos.close();
}
//read
public static Object readObject(Context context, String key) throws IOException,
ClassNotFoundException {
FileInputStream fis = context.openFileInput(key);
ObjectInputStream ois = new ObjectInputStream(fis);
Object object = ois.readObject();
return object;
}
//delete
public static void clearCahe(String key) throws IOException,ClassNotFoundException {
File file = new File(key);
file.delete();
}
使用它来清除应用程序数据。
public void clearApplicationData()
{
File cache = getCacheDir();
File appDir = new File(cache.getParent());
if (appDir.exists()) {
String[] children = appDir.list();
for (String s : children) {
if (!s.equals("lib")) {
deleteDir(new File(appDir, s));Log.i("TAG", "**************** File /data/data/APP_PACKAGE/" + s + " DELETED *******************");
}
}
}
}
public static boolean deleteDir(File dir)
{
if (dir != null && dir.isDirectory()) {
String[] children = dir.list();
for (int i = 0; i < children.length; i++) {
boolean success = deleteDir(new File(dir, children[i]));
if (!success) {
return false;
}
}
}
return dir.delete();
}
文件
与缓存目录一样,您的应用程序也有一个用于保存文件的特定于应用程序的目录。此目录中的文件将一直存在,直到应用程序明确删除它们或应用程序被卸载。您通常使用 Context.getFilesDir()
访问此目录。这可以在应用程序信息屏幕上显示为各种内容,但在您的屏幕截图中是 "USB Storage Data"。
注意:如果要显式放置在外部媒体(通常是 SD 卡)上,可以使用 Context.getExternalFilesDir(String type)
.
简单缓存管理器:
public class CacheManager {
private static final long MAX_SIZE = 5242880L; // 5MB
private CacheManager() {
}
public static void cacheData(Context context, byte[] data, String name) throws IOException {
File cacheDir = context.getCacheDir();
long size = getDirSize(cacheDir);
long newSize = data.length + size;
if (newSize > MAX_SIZE) {
cleanDir(cacheDir, newSize - MAX_SIZE);
}
File file = new File(cacheDir, name);
FileOutputStream os = new FileOutputStream(file);
try {
os.write(data);
}
finally {
os.flush();
os.close();
}
}
public static byte[] retrieveData(Context context, String name) throws IOException {
File cacheDir = context.getCacheDir();
File file = new File(cacheDir, name);
if (!file.exists()) {
// Data doesn't exist
return null;
}
byte[] data = new byte[(int) file.length()];
FileInputStream is = new FileInputStream(file);
try {
is.read(data);
}
finally {
is.close();
}
return data;
}
private static void cleanDir(File dir, long bytes) {
long bytesDeleted = 0;
File[] files = dir.listFiles();
for (File file : files) {
bytesDeleted += file.length();
file.delete();
if (bytesDeleted >= bytes) {
break;
}
}
}
private static long getDirSize(File dir) {
long size = 0;
File[] files = dir.listFiles();
for (File file : files) {
if (file.isFile()) {
size += file.length();
}
}
return size;
}
}
注意:缓存的目的是减少网络流量activity, 长流程,并在您的应用中提供响应式 UI。
参考:When to clear the cache dir in Android?.
context.openFileOutput(key
将文件写入内存。您可以使用 getFilesDir() 找到的路径看起来像 /data/data/<yourpackagename>/files
.
因此,如果您想删除文件 'key',您必须将 File file = new File(path)
的路径设置为 String path = getFilesDir().getAbsolutePath() + "/" + key;
。
并使用file.exists()检查文件是否存在!