byte [] su file in Java


327

Con Java:

Ho un byte[]che rappresenta un file.

Come scrivo questo in un file (es. C:\myfile.pdf)

So che è fatto con InputStream, ma non riesco a risolverlo.

Risposte:


502

Usa Apache Commons IO

FileUtils.writeByteArrayToFile(new File("pathname"), myByteArray)

Oppure, se insisti nel fare il lavoro per te stesso ...

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 Beh, probabilmente riesce a ripulire le risorse nel caso triste.
Tom Hawtin - tackline il

1
Dal documento: NOTA: a partire dalla v1.3, le directory padre del file verranno create se non esistono.
bmargulies,

24
Se la scrittura non riesce, si perde il flusso di output. Utilizzare sempre try {} finally {}per garantire una corretta pulizia delle risorse.
Steven Schlansker,

3
l'istruzione fos.close () è ridondante poiché stai usando try-with-resources che chiude automaticamente il flusso, anche se la scrittura non riesce.
Tihomir Meščić,

4
Perché dovrei usare apache commons IO quando sono 2 linee con Java normale
GabrielBB

185

Senza librerie:

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

Con Google Guava :

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

Con Apache Commons :

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

Tutte queste strategie richiedono che a un certo punto catturi anche una IOException.


118

Un'altra soluzione che utilizza java.nio.file:

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

1
solo per Andorid O (8.0) +
kangear

2
Non credo C:\myfile.pdffunzionerebbe comunque su Android ...;)
TBieniek,

37

Anche da Java 7, una riga con java.nio.file.Files:

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

Dove data è il tuo byte [] e filePath è una stringa. È inoltre possibile aggiungere più opzioni di apertura file con la classe StandardOpenOptions. Aggiungi tiri o surround con try / catch.


6
È possibile utilizzare Paths.get(filePath);invece dinew File(filePath).toPath()
Tim Büthe

@Halil Non penso che sia giusto. Secondo javadocs esiste un terzo argomento opzionale per le opzioni aperte e "Se non sono presenti opzioni, questo metodo funziona come se fossero presenti le opzioni CREATE, TRUNCATE_EXISTING e WRITE. In altre parole, apre il file per la scrittura, creando il file se non esiste, o inizialmente troncando un file normale esistente a una dimensione di 0 ".
Kevin Sadler,

19

Da Java 7 in poi è possibile utilizzare l' istruzione try-with-resources per evitare perdite di risorse e facilitare la lettura del codice. Maggiori informazioni qui .

Per scrivere il tuo byteArrayin un file devi fare:

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

Ho provato a usarlo e questo ha causato problemi con byte che non erano caratteri UTF-8, quindi starei attento con questo se stai provando a scrivere singoli byte per creare un file, per esempio.
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] Byte [] in 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);
                            }

Grazie per la risposta..ma ho confusione riguardo a "nomefile" intendo qual è il tipo di file che stai salvando i dati? puoi spiegare per favore?
SRam

1
Ciao SRam, che dipende esclusivamente dalla tua applicazione per cui stai eseguendo la conversione e in quale formato vuoi l'output, suggerirei di scegliere un formato .txt (es.: - myconvertedfilename.txt) ma di nuovo a tua scelta.
Piyush Rumao,

0

Esempio di base:

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

Questo è un programma in cui stiamo leggendo e stampando un array di byte offset e lunghezza usando String Builder e scrivendo l'array di byte offset lunghezza nel nuovo file.

` Inserisci qui il codice

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 in console: fghij

O / P nel nuovo file: cdefg


Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.