最大化文件系统内存的实用程序

时间:2011-10-06 19:11:43

标签: android

有没有人知道是否存在可以填满内部手机内存或SD卡内存的应用程序,以帮助在完全内存条件下测试应用程序功能?如果这里有人熟悉BREW开发,我正在寻找与maxfilecnt等效的Android。

谢谢!

1 个答案:

答案 0 :(得分:0)

只需打开一个文件并写入文件,直至失败:

String FILENAME = "hello_file";
String string = "hello world!";

FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
while(true)
    fos.write(string.getBytes());
fos.close();