Programing

byte []를 Java로 파일로

lottogame 2020. 3. 17. 08:31
반응형

byte []를 Java로 파일로


자바로 :

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

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

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


사용 아파치 코 몬즈 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
}

라이브러리가없는 경우 :

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

구글 구아바 :

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

아파치 코 몬즈 :

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

이러한 모든 전략은 어느 시점에서 IOException을 잡아야합니다.


다음을 사용하는 다른 솔루션 java.nio.file:

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

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

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

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


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

byteArray파일에 파일 을 쓰려면 다음을 수행하십시오.

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

OutputStream좀 더 구체적으로 시도하십시오FileOutputStream


InputStream으로 완료되었음을 알고 있습니다.

실제로, 당신 파일 출력에 것입니다 ...


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] 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);
                            }

기본 예 :

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) {}

Cactoos 를 시도해 볼 수 있습니다 .

new LengthOf(new TeeInput(array, new File("a.txt"))).value();

자세한 내용 : http://www.yegor256.com/2017/06/22/object-oriented-input-output-in-cactoos.html


이것은 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

참고 URL : https://stackoverflow.com/questions/4350084/byte-to-file-in-java

반응형