2

我必须使用 java.nio 通过填充数据来创建任何所需大小的文件。我正在阅读文档,但对何时需要翻转、放置或书写并出现错误感到困惑。我已经使用 .io 成功完成了这个程序,但我正在测试 .nio 是否会让它运行得更快。

到目前为止,这是我的代码。args[0] 是您要创建的文件的大小,args[1] 是要写入的文件的名称

public static void main(String[] args) throws IOException
 {
     nioOutput fp = new nioOutput();
     FileOutputStream fos = new FileOutputStream(args[1]);
     FileChannel fc = fos.getChannel();

     long sizeOfFile = fp.getFileSize(args[1]);      
     long desiredSizeOfFile = Long.parseLong(args[0]) * 1073741824; //1 Gigabyte = 1073741824 bytes      
     int byteLength = 1024;      
     ByteBuffer b = ByteBuffer.allocate(byteLength);

     while(sizeOfFile + byteLength < desiredSizeOfFile)
     {  
    // b.put((byte) byteLength);
     b.flip();
     fc.write(b);
     sizeOfFile += byteLength;       
     }
     int diff = (int) (desiredSizeOfFile - sizeOfFile);
     sizeOfFile += diff;

     fc.write(b, 0, diff);

     fos.close();
     System.out.println("Finished at " + sizeOfFile / 1073741824  + " Gigabyte(s)");                
 }

long getFileSize(String fileName) 
{
    File file = new File(fileName);        
    if (!file.exists() || !file.isFile()) 
    {
        System.out.println("File does not exist");
        return -1;
    }
    return file.length();
}
4

2 回答 2

1

如果您想要做的只是将文件预扩展为带有空值的给定长度,您可以在三行中完成并保存所有 I/O:

RandomAccessFile raf = new RandomAccessFile(file, "rw");
raf.setLength(desiredSizeOfFile);
raf.close();

这将像您现在尝试执行的操作一样快数倍。

于 2013-03-28T03:24:50.783 回答
-1

对不起大家,我想通了。

 while(sizeOfFile + byteLength < desiredSizeOfFile)
     {           
     fc.write(b);
     b.rewind();
     sizeOfFile += byteLength;       
     }
     int diff = (int) (desiredSizeOfFile - sizeOfFile);
     sizeOfFile += diff;

     ByteBuffer d = ByteBuffer.allocate(diff);

     fc.write(d);
     b.rewind();

     fos.close();
     System.out.println("Finished at " + sizeOfFile / 1073741824  + " Gigabyte(s)");                
 }
于 2013-03-27T18:25:33.720 回答