Байт [] для записи в Java

С Java:

У меня есть byte[], который представляет файл.

Как записать это в файл (т.е. C:\myfile.pdf)

Я знаю, что это было сделано с InputStream, но я не могу понять, как это работает.

Ответ 1

Использование Apache Commons 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
}

Ответ 2

Без каких-либо библиотек:

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

С Google Guava:

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

С Apache Commons:

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

Все эти стратегии требуют, чтобы вы также ловили IOException в какой-то момент.

Ответ 3

Другое решение, использующее java.nio.file:

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

Ответ 4

Также, поскольку Java 7, одна строка с java.nio.file.Files:

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

Если данные являются вашим байтом [], а filePath - это строка. Вы также можете добавить несколько вариантов открытия файла с классом StandardOpenOptions. Добавьте броски или закруглите с помощью try/catch.

Ответ 5

От Java 7 вперед вы можете использовать оператор try-with-resources, чтобы избежать утечки ресурсов и упростить чтение кода. Подробнее об этом здесь.

Чтобы записать ваш byteArray в файл, который вы сделали бы:

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

Ответ 6

Попробуйте OutputStream или более конкретно FileOutputStream

Ответ 7

Я знаю, что это сделано с InputStream

Собственно, вы пишите в файл ...

Ответ 8

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

Ответ 9

Основной пример:

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

Ответ 10

//////////////////////////1] Файл для байта []///////////////////

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

Ответ 12

Это программа, в которой мы читаем и печатаем массив смещений и длины байтов с помощью 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