Respostas:
Use o Apache Commons IO
FileUtils.writeByteArrayToFile(new File("pathname"), myByteArray)
Ou, se você insistir em fazer um trabalho para si mesmo ...
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 {}
para garantir a limpeza adequada dos recursos.
Sem nenhuma biblioteca:
try (FileOutputStream stream = new FileOutputStream(path)) {
stream.write(bytes);
}
Com o Google Guava :
Files.write(bytes, new File(path));
Com o Apache Commons :
FileUtils.writeByteArrayToFile(new File(path), bytes);
Todas essas estratégias também exigem que você capture uma IOException em algum momento.
Outra solução usando java.nio.file
:
byte[] bytes = ...;
Path path = Paths.get("C:\\myfile.pdf");
Files.write(path, bytes);
C:\myfile.pdf
iria trabalhar em Android de qualquer maneira ...;)
Também desde o Java 7, uma linha com java.nio.file.Files:
Files.write(new File(filePath).toPath(), data);
Onde data é seu byte [] e filePath é uma String. Você também pode adicionar várias opções de abertura de arquivo com a classe StandardOpenOptions. Adicione arremessos ou surround com try / catch.
Paths.get(filePath);
vez denew File(filePath).toPath()
A partir do Java 7, você pode usar a instrução try-with-resources para evitar o vazamento de recursos e facilitar a leitura do seu código. Mais sobre isso aqui .
Para escrever seu byteArray
em um arquivo, você faria:
try (FileOutputStream fos = new FileOutputStream("fullPathToFile")) {
fos.write(byteArray);
} catch (IOException ioe) {
ioe.printStackTrace();
}
Experimente um OutputStream
ou mais especificamenteFileOutputStream
Eu sei que é feito com InputStream
Na verdade, você seria escrita a um arquivo de saída ...
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] Byte [] to File //////////////////// ///////
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);
}
Exemplo básico:
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) {}
Este é um programa em que estamos lendo e imprimindo o deslocamento e o comprimento da matriz de bytes usando o String Builder e gravando a extensão do deslocamento da matriz de bytes no novo arquivo.
` Digite o código aqui
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 no console: fghij
O / P em novo arquivo: cdefg
Você pode experimentar o Cactoos :
new LengthOf(new TeeInput(array, new File("a.txt"))).value();
Mais detalhes: http://www.yegor256.com/2017/06/22/object-oriented-input-output-in-cactoos.html