byte []를 Java로 파일로


327

자바로 :

나는이 byte[]파일을 나타냅니다합니다.

나는 파일이 쓰기 어떻게 (예. C:\myfile.pdf)

InputStream으로 완료되었다는 것을 알고 있지만 해결할 수없는 것 같습니다.

답변:


502

사용 아파치 코 몬즈 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
@아르 자형. Bemrose 글쎄, 아마도 슬픈 경우에는 리소스를 정리할 수있을 것입니다.
Tom Hawtin-tackline

1
문서에서 : 참고 : v1.3에서와 같이 파일의 상위 디렉토리가 없으면 작성됩니다.
bmargulies

24
쓰기에 실패하면 출력 스트림이 누출됩니다. try {} finally {}적절한 리소스 정리를 위해 항상 사용해야 합니다.
Steven Schlansker

3
쓰기가 실패하더라도 스트림을 자동으로 닫는 try-with-resources를 사용하므로 fos.close () 문은 중복됩니다.
Tihomir Meščić

4
일반 Java로 2 줄인 경우 Apache Commons IO를 사용하는 이유
GabrielBB

185

라이브러리가없는 경우 :

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

구글 구아바 :

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

아파치 코 몬즈 :

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어쨌든 안드로이드에서 작동 하지 않을 것이라고 생각 합니다 ...;)
TBieniek

37

또한 Java 7부터 java.nio.file.Files가있는 한 줄 :

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

여기서 data는 바이트 []이고 filePath는 문자열입니다. StandardOpenOptions 클래스를 사용하여 여러 파일 열기 옵션을 추가 할 수도 있습니다. try / catch로 던지기 또는 서라운드를 추가하십시오.


6
Paths.get(filePath);대신 사용할 수 있습니다new File(filePath).toPath()
Tim Büthe

@Halil 나는 그것이 옳지 않다고 생각합니다. javadocs에 따르면 개방 옵션에 대한 선택적 세 번째 인수가 있으며 "옵션이 없으면이 방법은 CREATE, TRUNCATE_EXISTING 및 WRITE 옵션이있는 것처럼 작동합니다. 즉, 파일을 작성하기 위해 파일을 열고 파일이없는 경우 또는 기존의 일반 파일을 0 크기로 자릅니다. "
Kevin Sadler

19

에서 자바 7 이후에는 사용할 수있는 시도 -과 - 자원 자원 누출 방지하고 코드를 읽기 쉽게하기 위해 문을. 더 자세한 내용은 여기참조하십시오 .

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] File to Byte [] /////////////////// //

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

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.