web-dev-qa-db-ja.com

byte []をJavaのファイルに

Javaの場合

ファイルを表すbyte[]があります。

これをファイルに書き込むにはどうすればいいですか(すなわちC:\myfile.pdf)。

私はそれがInputStreamを使って行われているのを知っています、しかし私はそれを解決するように思えません。

272
elcool

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
}
420
bmargulies

ライブラリがない場合:

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をキャッチする必要があります。

160
SharkAlley

Java.nio.fileを使用した別の解決策:

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

また、Java 7以降、Java.nio.file.Filesを含む1行

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

Dataはあなたのbyte []で、filePathはStringです。 StandardOpenOptionsクラスで複数のファイルを開くオプションを追加することもできます。スローを追加するか、try/catchで囲みます。

32

Java 7 以降では、リソースのリークを避けコードを読みやすくするためにtry-with-resourcesステートメントを使用できます。それについての詳細 ここ

byteArrayをファイルに書き込むには、次のようにします。

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

OutputStream、より具体的にはFileOutputStreamを試す

4
Gareth Davis

私はそれがInputStreamで行われていることを知っています

実際、あなたは ファイル出力 ...に対して 書き込み になるでしょう。

2
Powerlord
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);
}
2
Piyush Rumao

//////////////////////////// 1] File to By [[] ///////////////// //

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);
                            }
1
Piyush Rumao

あなたは試すことができます サボテン

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

より多くの詳細: http://www.yegor256.com/2017/06/22/object-oriented-input-output-in-cactoos.html

1
yegor256

基本的な例:

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

これは、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

0
Yogi