উত্তর:
অ্যাপাচি কমন্স আইও ব্যবহার করুন
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);
এই সমস্ত কৌশলগুলির জন্য আপনাকে কোনও সময়ে আইওএক্সেপশনও ধরা দরকার।
আরও একটি সমাধান ব্যবহার করে java.nio.file
:
byte[] bytes = ...;
Path path = Paths.get("C:\\myfile.pdf");
Files.write(path, bytes);
C:\myfile.pdf
যাইহোক অ্যান্ড্রয়েডে কাজ করবে ...;)
জাভা 7-এর পর থেকে, java.nio.file.Files এর সাথে একটি লাইন:
Files.write(new File(filePath).toPath(), data);
যেখানে ডেটা হল আপনার বাইট [] এবং ফাইলপথ একটি স্ট্রিং। আপনি স্ট্যান্ডার্ড ওপেনঅ্যাপশন ক্লাসের সাথে একাধিক ফাইল ওপেন বিকল্পগুলিও যুক্ত করতে পারেন। চেষ্টা / ধরা দিয়ে নিক্ষেপ বা চারপাশে যুক্ত করুন।
Paths.get(filePath);
পরিবর্তেnew File(filePath).toPath()
থেকে জাভা 7 অনওয়ার্ড আপনি ব্যবহার করতে পারেন ব্যবহার করে দেখুন-সঙ্গে-সম্পদ সম্পদ লিক এড়াতে এবং আপনার কোড সহজ পাঠযোগ্য করতে বিবৃতি। আরো বিষয়ে এখানে ।
byteArray
একটি ফাইল আপনার লিখতে আপনি করতে হবে:
try (FileOutputStream fos = new FileOutputStream("fullPathToFile")) {
fos.write(byteArray);
} catch (IOException ioe) {
ioe.printStackTrace();
}
একটি OutputStream
বা আরও নির্দিষ্টভাবে চেষ্টা করুনFileOutputStream
আমি জানি ইনপুটস্ট্রিম দিয়ে এটি সম্পন্ন হয়েছে
আসলে, আপনি একটি ফাইল আউটপুট লিখতে চাই ...
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] ফাইল টু বাইট [] /////////////////// //
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);
}
প্রাথমিক উদাহরণ:
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();
}
}
কনসোলে ও / পি: fghij
ও / পি নতুন ফাইলে: সিডিএফজি
আপনি ক্যাকটুস চেষ্টা করতে পারেন :
new LengthOf(new TeeInput(array, new File("a.txt"))).value();
আরো বিস্তারিত: http://www.yegor256.com/2017/06/22/object-oriented-input-output-in-cactoos.html