ไบต์ [] ไปยังไฟล์ใน Java


327

ด้วย Java:

ฉันมีbyte[]ที่แสดงถึงไฟล์

ฉันจะเขียนสิ่งนี้ลงไฟล์ได้อย่างไร (เช่น C:\myfile.pdf )

ฉันรู้ว่ามันเสร็จสิ้นแล้วด้วย InputStream แต่ฉันไม่สามารถใช้งานได้

คำตอบ:


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 - tackline

1
จากเอกสาร: หมายเหตุ: ตั้งแต่ v1.3 ไดเรกทอรีหลักของไฟล์จะถูกสร้างขึ้นหากไม่มีอยู่
bmargulies

24
หากการเขียนล้มเหลวคุณจะรั่วไหลของกระแสออก คุณควรใช้try {} finally {}เพื่อให้แน่ใจว่าการล้างทรัพยากรที่เหมาะสม
Steven Schlansker

3
คำสั่ง fos.close () ซ้ำซ้อนเนื่องจากคุณใช้การลองกับทรัพยากรซึ่งปิดสตรีมโดยอัตโนมัติแม้ว่าการเขียนจะล้มเหลว
Tihomir Meščić

4
ทำไมฉันถึงใช้ apache คอมมอนส์ IO เมื่อมันเป็น 2 บรรทัดกับ Java ปกติ
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()
ทิมBüthe

@Halil ฉันไม่คิดว่าถูกต้อง ตาม javadocs มีอาร์กิวเมนต์ตัวเลือกที่ 3 สำหรับตัวเลือกการเปิดและ "ถ้าไม่มีตัวเลือกวิธีการนี้จะทำงานราวกับว่ามีตัวเลือก CREATE, TRUNCATE_EXISTING และ WRITE ในคำอื่น ๆ มันจะเปิดไฟล์สำหรับการเขียนสร้าง ไฟล์หากไม่มีอยู่หรือตัดทอนไฟล์ปกติที่มีอยู่ให้มีขนาดเท่ากับ 0 "
Kevin Sadler

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] ไฟล์ไปยังไบต์ [] /////////////////// 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);
                            }

ขอบคุณสำหรับคำตอบ .. แต่ฉันมีความสับสนเกี่ยวกับ "ชื่อไฟล์" ฉันหมายถึงประเภทของไฟล์ที่คุณบันทึกข้อมูลคืออะไร? คุณช่วยอธิบายได้ไหม
SRam

1
สวัสดี SRam ที่ขึ้นอยู่กับแอปพลิเคชันของคุณว่าเหตุใดคุณจึงทำการแปลงและในรูปแบบที่คุณต้องการออกผมขอแนะนำให้ไปที่รูปแบบ. txt (เช่น: - myconvertedfilename.txt) แต่เป็นทางเลือกของคุณอีกครั้ง
Piyush Rumao

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


โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.