创建JPEG / txt任何类型文件,需要用户将给出的固定大小

时间:2014-01-16 08:47:38

标签: android createfile

我想根据用户需求文件创建任何类型的JPEG / TEXT / MP3,这些文件需要固定大小,这也是用户提供的,例如500 KB,1 Mb,无论大小,还有sdcard中的路径,这也将提供按用户。但我不知道如何实现这一目标。谁能教我如何制作/创作?

1 个答案:

答案 0 :(得分:1)

是的有可能。

我正在使用下面的代码来实现这些目标。

class Test {
     public static void main(String args[]) {
          try {
               RandomAccessFile f = new RandomAccessFile("t.txt", "rw");
               f.setLength(1073741824);// 1073741824 bytes = 1 GB
               f.write("Hello I am writing this file".getBytes());
               f.close();
          } catch (Exception e) {
               e.printStackTrace();
          }
     }
}