有没有人知道是否存在可以填满内部手机内存或SD卡内存的应用程序,以帮助在完全内存条件下测试应用程序功能?如果这里有人熟悉BREW开发,我正在寻找与maxfilecnt等效的Android。
谢谢!
答案 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();