byte []以Java文件格式


327

使用Java:

我有一个byte[]代表文件的文件。

如何将此写入文件(即C:\myfile.pdf

我知道它已经用InputStream完成了,但是我似乎无法解决。

Answers:


502

使用Apache Commons IO

FileUtils.writeByteArrayToFile(new File("pathname"), myByteArray)

或者,如果您坚持要自己做...

try (FileOutputStream fos = new FileOutputStream("pathname")) {
   fos.write(myByteArray);
   //fos.close(); There is no more need for this line since you had created the instance of "fos" inside the try. And this will automatically close the OutputStream
}

28
@R。Bemrose好吧,在不幸的情况下,它可能设法清理资源。
Tom Hawtin-大头钉

1
从文档开始:注意:从v1.3开始,如果不存在该文件的父目录,则将创建它们。
bmargulies 2010年

24
如果写入失败,则将泄漏输出流。您应始终使用try {} finally {}以确保正确清理资源。
Steven Schlansker

3
fos.close()语句是多余的,因为您正在使用try-with-resources,即使写入失败,该资源也会自动关闭流。
TihomirMeščić17年

4
为什么在普通Java的2行代码中使用apache commons IO
GabrielBB

185

没有任何库:

try (FileOutputStream stream = new FileOutputStream(path)) {
    stream.write(bytes);
}

使用Google Guava

Files.write(bytes, new File(path));

使用Apache Commons

FileUtils.writeByteArrayToFile(new File(path), bytes);

所有这些策略都要求您在某个时刻也捕获IOException。


118

另一个解决方案使用java.nio.file

byte[] bytes = ...;
Path path = Paths.get("C:\\myfile.pdf");
Files.write(path, bytes);

1
仅适用于Andorid O(8.0)+
kangear,

2
我认为C:\myfile.pdf无论如何都无法在Android上使用...;)
TBieniek

37

同样是从Java 7开始,带有java.nio.file.Files的一行:

Files.write(new File(filePath).toPath(), data);

其中data是您的byte [],filePath是一个String。您还可以使用StandardOpenOptions类添加多个文件打开选项。增加投掷或用尝试/接球包围。


6
你可以使用Paths.get(filePath);,而不是new File(filePath).toPath()
蒂姆·布泰

@哈利勒,我认为那是不对的。根据javadocs,打开选项有一个可选的第3个参数,“如果不存在任何选项,则此方法就像存在CREATE,TRUNCATE_EXISTING和WRITE选项一样工作。换句话说,它将打开文件进行写入,并创建文件(如果不存在),或者最初将现有的常规文件截断为0。”
凯文·萨德勒

19

Java 7开始,您可以使用try-with-resources语句来避免资源泄漏,并使代码更易于阅读。在这里更多

要将您的内容写入byteArray文件,您可以执行以下操作:

try (FileOutputStream fos = new FileOutputStream("fullPathToFile")) {
    fos.write(byteArray);
} catch (IOException ioe) {
    ioe.printStackTrace();
}

我尝试使用此方法,它导致不是UTF-8字符的字节出现问题,因此,例如,如果您尝试编写单个字节来构建文件,则我会谨慎对待。
pdrum



1
File f = new File(fileName);    
byte[] fileContent = msg.getByteSequenceContent();    

Path path = Paths.get(f.getAbsolutePath());
try {
    Files.write(path, fileContent);
} catch (IOException ex) {
    Logger.getLogger(Agent2.class.getName()).log(Level.SEVERE, null, ex);
}

1

/////////////////////////// 1]文件到字节[] ////////////////// //

Path path = Paths.get(p);
                    byte[] data = null;                         
                    try {
                        data = Files.readAllBytes(path);
                    } catch (IOException ex) {
                        Logger.getLogger(Agent1.class.getName()).log(Level.SEVERE, null, ex);
                    }

//////////////////////// 2]字节[]到文件///////////////////// ///////

 File f = new File(fileName);
 byte[] fileContent = msg.getByteSequenceContent();
Path path = Paths.get(f.getAbsolutePath());
                            try {
                                Files.write(path, fileContent);
                            } catch (IOException ex) {
                                Logger.getLogger(Agent2.class.getName()).log(Level.SEVERE, null, ex);
                            }

感谢您的答复..但我对“ fileName”感到困惑,我的意思是您要保存数据的文件类型是什么?你能解释一下吗?
SRam'Apr

1
SRam,您好,这完全取决于您的应用程序,为什么要执行转换以及想要哪种格式的输出,我建议您选择.txt格式(例如:-myconvertedfilename.txt),但还是要选择它。
Piyush Rumao '18 -4-10

0

基本示例:

String fileName = "file.test";

BufferedOutputStream bs = null;

try {

    FileOutputStream fs = new FileOutputStream(new File(fileName));
    bs = new BufferedOutputStream(fs);
    bs.write(byte_array);
    bs.close();
    bs = null;

} catch (Exception e) {
    e.printStackTrace()
}

if (bs != null) try { bs.close(); } catch (Exception e) {}

0

这是一个程序,我们在其中使用String Builder读取并打印字节偏移和长度的数组,并将字节偏移长度的数组写入新文件。

` 在这里输入代码

import java.io.File;   
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;        

//*This is a program where we are reading and printing array of bytes offset and length using StringBuilder and Writing the array of bytes offset length to the new file*//     

public class ReadandWriteAByte {
    public void readandWriteBytesToFile(){
        File file = new File("count.char"); //(abcdefghijk)
        File bfile = new File("bytefile.txt");//(New File)
        byte[] b;
        FileInputStream fis = null;              
        FileOutputStream fos = null;          

        try{               
            fis = new FileInputStream (file);           
            fos = new FileOutputStream (bfile);             
            b = new byte [1024];              
            int i;              
            StringBuilder sb = new StringBuilder();

            while ((i = fis.read(b))!=-1){                  
                sb.append(new String(b,5,5));               
                fos.write(b, 2, 5);               
            }               

            System.out.println(sb.toString());               
        }catch (IOException e) {                    
            e.printStackTrace();                
        }finally {               
            try {              
                if(fis != null);           
                    fis.close();    //This helps to close the stream          
            }catch (IOException e){           
                e.printStackTrace();              
            }            
        }               
    }               

    public static void main (String args[]){              
        ReadandWriteAByte rb = new ReadandWriteAByte();              
        rb.readandWriteBytesToFile();              
    }                 
}                

控制台中的O / P:fghij

O / P在新文件中:cdefg


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.