回答:
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
}
try {} finally {}
適切なリソースのクリーンアップを確保するために使用する必要があります。
ライブラリなし:
try (FileOutputStream stream = new FileOutputStream(path)) {
stream.write(bytes);
}
Files.write(bytes, new File(path));
FileUtils.writeByteArrayToFile(new File(path), bytes);
これらの戦略はすべて、ある時点でもIOExceptionをキャッチする必要があります。
また、Java 7以降は、java.nio.file.Filesを1行追加しました。
Files.write(new File(filePath).toPath(), data);
ここで、dataはbyte []で、filePathは文字列です。StandardOpenOptionsクラスを使用して、複数のファイルオープンオプションを追加することもできます。スローを追加するか、try / catchで囲みます。
Paths.get(filePath);
代わりに使用できますnew File(filePath).toPath()
以下からのJava 7以降を使用でき試し-と資源の資源を漏洩しないよう、読み、あなたのコードを容易にするために声明を。詳細はこちら。
byteArray
ファイルに書き込むには、次のようにします。
try (FileOutputStream fos = new FileOutputStream("fullPathToFile")) {
fos.write(byteArray);
} catch (IOException ioe) {
ioe.printStackTrace();
}
////////////////////////// 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);
}
基本的な例:
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) {}
これは、文字列ビルダーを使用してバイトオフセットと長さの配列を読み取り、新しいファイルにバイトオフセットの長さの配列を書き込むプログラムです。
` ここにコードを入力
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