byte []をJavaのファイルに


327

Javaの場合:

私が持っているbyte[]ファイルを表すことを。

これをファイルに書き込む方法(例C:\myfile.pdf

私はそれがInputStreamで行われていることを知っていますが、うまくいくようには見えません。

回答:


502

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
}

28
@R。Bemroseまあ、それはおそらく悲しいケースではリソースをクリーンアップすることに成功しました。
トムホーティン-タックライン

1
ドキュメントから:注:v1.3以降と同様に、ファイルの親ディレクトリが存在しない場合は作成されます。
bmargulies 2010

24
書き込みに失敗すると、出力ストリームがリークします。常にtry {} finally {}適切なリソースのクリーンアップを確保するために使用する必要があります。
Steven Schlansker 2013年

3
書き込みが失敗した場合でもストリームを自動的に閉じるtry-with-resourcesを使用しているため、fos.close()ステートメントは冗長です。
TihomirMeščić2017

4
通常のJavaで2行の場合にApache Commons IOを使用する理由
GabrielBB

185

ライブラリなし:

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

Googleのグァバ

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

Apacheのコモンズ

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

これらの戦略はすべて、ある時点でもIOExceptionをキャッチする必要があります。


118

を使用した別のソリューションjava.nio.file

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

1
Andorid O(8.0)+のみ
kangear

2
C:\myfile.pdfとにかくAndroidで動作するとは思わない...;)
TBieniek

37

また、Java 7以降は、java.nio.file.Filesを1行追加しました。

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

ここで、dataはbyte []で、filePathは文字列です。StandardOpenOptionsクラスを使用して、複数のファイルオープンオプションを追加することもできます。スローを追加するか、try / catchで囲みます。


6
Paths.get(filePath);代わりに使用できますnew File(filePath).toPath()
TimBüthe2017年

@ハリル私はそうは思わない。javadocsによると、オプションを開くためのオプションの3番目の引数があり、「オプションが存在しない場合、このメソッドはCREATE、TRUNCATE_EXISTING、およびWRITEオプションが存在するかのように機能します。つまり、書き込み用にファイルを開き、ファイルが存在しない場合、または既存の通常ファイルを最初にサイズ0に切り捨てます。」
Kevin Sadler

19

以下からのJava 7以降を使用でき試し-と資源の資源を漏洩しないよう、読み、あなたのコードを容易にするために声明を。詳細はこちら

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

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

これを使用してみたところ、UTF-8文字ではないバイトで問題が発生したため、たとえばファイルを構築するために個別のバイトを書き込もうとする場合は注意してください。
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 [] 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);
                            }

回答ありがとうございます。「fileName」に関して混乱があります。つまり、データを保存するファイルのタイプは何ですか?説明していただけますか?
SRam 2018

1
こんにちはSRam。変換を行う理由と出力形式をアプリケーションに依存しているため、.txt形式(例:-myconvertedfilename.txt)を使用することをお勧めしますが、ここでも選択できます。
Piyush Rumao

0

基本的な例:

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

これは、文字列ビルダーを使用してバイトオフセットと長さの配列を読み取り、新しいファイルにバイトオフセットの長さの配列を書き込むプログラムです。

` ここにコードを入力

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


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.