답변:
사용 아파치 코 몬즈 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 {} finally {}
적절한 리소스 정리를 위해 항상 사용해야 합니다.
또한 Java 7부터 java.nio.file.Files가있는 한 줄 :
Files.write(new File(filePath).toPath(), data);
여기서 data는 바이트 []이고 filePath는 문자열입니다. StandardOpenOptions 클래스를 사용하여 여러 파일 열기 옵션을 추가 할 수도 있습니다. try / catch로 던지기 또는 서라운드를 추가하십시오.
Paths.get(filePath);
대신 사용할 수 있습니다new File(filePath).toPath()
에서 자바 7 이후에는 사용할 수있는 시도 -과 - 자원 자원 누출 방지하고 코드를 읽기 쉽게하기 위해 문을. 더 자세한 내용은 여기 를 참조하십시오 .
byteArray
파일에 파일 을 쓰려면 다음을 수행하십시오.
try (FileOutputStream fos = new FileOutputStream("fullPathToFile")) {
fos.write(byteArray);
} catch (IOException ioe) {
ioe.printStackTrace();
}
/////////////////////////// 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) {}
이것은 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
당신은 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