আমি কিভাবে কনভার্ট করব java.io.File
একটি থেকে byte[]
?
আমি কিভাবে কনভার্ট করব java.io.File
একটি থেকে byte[]
?
উত্তর:
এটি আপনার পক্ষে সেরা কী তার উপর নির্ভর করে। উত্পাদনশীলতা অনুসারে, চাকাটি পুনরায় উদ্ভাবন করবেন না এবং অ্যাপাচি কমন্স ব্যবহার করবেন না। যা এখানে IOUtils.toByteArray(InputStream input)
।
File
হয় byte[]
? আমি Java6 ব্যবহার করছি তাই আমি Nio পদ্ধতি ব্যবহার করতে পারবেন না :(
জেডিকে 7 থেকে আপনি ব্যবহার করতে পারেন Files.readAllBytes(Path)
।
উদাহরণ:
import java.io.File;
import java.nio.file.Files;
File file;
// ...(file is initialised)...
byte[] fileContent = Files.readAllBytes(file.toPath());
জেডিকে Since - একটি লাইনার:
byte[] array = Files.readAllBytes(Paths.get("/path/to/file"));
কোন বাহ্যিক নির্ভরতা প্রয়োজন।
import java.nio.file.Files;
এবং import java.nio.file.Paths;
যদি আপনার ইতিমধ্যে না থাকে।
import java.io.RandomAccessFile;
RandomAccessFile f = new RandomAccessFile(fileName, "r");
byte[] b = new byte[(int)f.length()];
f.readFully(b);
জাভা 8 ডকুমেন্টেশন: http://docs.oracle.com/javase/8/docs/api/java/io/RandomAccessFile.html
মূলত আপনাকে এটি স্মৃতিতে পড়তে হবে। ফাইলটি খুলুন, অ্যারেটি বরাদ্দ করুন এবং ফাইল থেকে সামগ্রীগুলি অ্যারেতে পড়ুন।
সহজ উপায়টি এর সাথে মিলিয়ে কিছু:
public byte[] read(File file) throws IOException, FileTooBigException {
if (file.length() > MAX_FILE_SIZE) {
throw new FileTooBigException(file);
}
ByteArrayOutputStream ous = null;
InputStream ios = null;
try {
byte[] buffer = new byte[4096];
ous = new ByteArrayOutputStream();
ios = new FileInputStream(file);
int read = 0;
while ((read = ios.read(buffer)) != -1) {
ous.write(buffer, 0, read);
}
}finally {
try {
if (ous != null)
ous.close();
} catch (IOException e) {
}
try {
if (ios != null)
ios.close();
} catch (IOException e) {
}
}
return ous.toByteArray();
}
এই ফাইলটি সামগ্রীর মধ্যে কয়েকটি অপ্রয়োজনীয় অনুলিপি (: ফাইল থেকে আসলে ডেটা তিনবার অনুলিপি করা হয়েছে হয়েছে buffer
, থেকে buffer
থেকে ByteArrayOutputStream
, থেকে ByteArrayOutputStream
প্রকৃত ফলে অ্যারেতে)।
আপনার অবশ্যই নিশ্চিত করতে হবে যে আপনি মেমরিতে কেবল একটি নির্দিষ্ট আকার পর্যন্ত ফাইলগুলি পড়েছেন (এটি সাধারণত অ্যাপ্লিকেশন নির্ভর) :-)।
আপনি IOException
বাইরে ফাংশন চিকিত্সা করা প্রয়োজন ।
আর একটি উপায় হ'ল:
public byte[] read(File file) throws IOException, FileTooBigException {
if (file.length() > MAX_FILE_SIZE) {
throw new FileTooBigException(file);
}
byte[] buffer = new byte[(int) file.length()];
InputStream ios = null;
try {
ios = new FileInputStream(file);
if (ios.read(buffer) == -1) {
throw new IOException(
"EOF reached while trying to read the whole file");
}
} finally {
try {
if (ios != null)
ios.close();
} catch (IOException e) {
}
}
return buffer;
}
এটির কোনও অপ্রয়োজনীয় অনুলিপি নেই।
FileTooBigException
একটি কাস্টম অ্যাপ্লিকেশন ব্যতিক্রম। MAX_FILE_SIZE
ধ্রুব একটি অ্যাপ্লিকেশন পরামিতি হয়।
বড় ফাইলগুলির জন্য আপনার সম্ভবত স্ট্রিম প্রসেসিং অ্যালগরিদম ভাবতে হবে বা মেমরি ম্যাপিং ব্যবহার করা উচিত (দেখুন java.nio
)।
যেমন কেউ বলেছে, অ্যাপাচি কমন্স ফাইল ইউটিসগুলিতে আপনি যা খুঁজছেন তা থাকতে পারে
public static byte[] readFileToByteArray(File file) throws IOException
উদাহরণ ব্যবহার ( Program.java
):
import org.apache.commons.io.FileUtils;
public class Program {
public static void main(String[] args) throws IOException {
File file = new File(args[0]); // assume args[0] is the path to file
byte[] data = FileUtils.readFileToByteArray(file);
...
}
}
এটি করার জন্য আপনি এনআইও এপিও ব্যবহার করতে পারেন। মোট ফাইলের আকার (বাইটগুলিতে) কোনও ইনটায় মাপসই করা হবে আমি এই কোডটি দিয়ে এই কাজটি করতে পারি।
File f = new File("c:\\wscp.script");
FileInputStream fin = null;
FileChannel ch = null;
try {
fin = new FileInputStream(f);
ch = fin.getChannel();
int size = (int) ch.size();
MappedByteBuffer buf = ch.map(MapMode.READ_ONLY, 0, size);
byte[] bytes = new byte[size];
buf.get(bytes);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
if (fin != null) {
fin.close();
}
if (ch != null) {
ch.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
আমি মনে করি এটি ম্যাপডবাইটবফার ব্যবহারের পর থেকে এটি খুব দ্রুত।
আপনার যদি জাভা 8 না থাকে এবং কয়েকটা লাইনের কোড লেখা এড়াতে একটি বিশাল গ্রন্থাগার অন্তর্ভুক্ত করা আমার পক্ষে একমত ধারণা:
public static byte[] readBytes(InputStream inputStream) throws IOException {
byte[] b = new byte[1024];
ByteArrayOutputStream os = new ByteArrayOutputStream();
int c;
while ((c = inputStream.read(b)) != -1) {
os.write(b, 0, c);
}
return os.toByteArray();
}
কলার স্ট্রিমটি বন্ধ করার জন্য দায়বদ্ধ।
// Returns the contents of the file in a byte array.
public static byte[] getBytesFromFile(File file) throws IOException {
// Get the size of the file
long length = file.length();
// You cannot create an array using a long type.
// It needs to be an int type.
// Before converting to an int type, check
// to ensure that file is not larger than Integer.MAX_VALUE.
if (length > Integer.MAX_VALUE) {
// File is too large
throw new IOException("File is too large!");
}
// Create the byte array to hold the data
byte[] bytes = new byte[(int)length];
// Read in the bytes
int offset = 0;
int numRead = 0;
InputStream is = new FileInputStream(file);
try {
while (offset < bytes.length
&& (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
offset += numRead;
}
} finally {
is.close();
}
// Ensure all the bytes have been read in
if (offset < bytes.length) {
throw new IOException("Could not completely read file "+file.getName());
}
return bytes;
}
throw new IOException("File is too large!");
ফাইলটি খুব বড় হলে আমাদের কী করা উচিত? এটি সম্পর্কে কোন উদাহরণ আছে?
এটি করার সহজ উপায়:
File fff = new File("/path/to/file");
FileInputStream fileInputStream = new FileInputStream(fff);
// int byteLength = fff.length();
// In android the result of file.length() is long
long byteLength = fff.length(); // byte count of the file-content
byte[] filecontent = new byte[(int) byteLength];
fileInputStream.read(filecontent, 0, (int) byteLength);
ফাইল থেকে বাইট পড়ার সহজ উপায়
import java.io.*;
class ReadBytesFromFile {
public static void main(String args[]) throws Exception {
// getBytes from anyWhere
// I'm getting byte array from File
File file = null;
FileInputStream fileStream = new FileInputStream(file = new File("ByteArrayInputStreamClass.java"));
// Instantiate array
byte[] arr = new byte[(int) file.length()];
// read All bytes of File stream
fileStream.read(arr, 0, arr.length);
for (int X : arr) {
System.out.print((char) X);
}
}
}
.*
, এটি একটি খারাপ অনুশীলন বলে মনে করা হয়।
আপনার অফার করার জন্য পেয়ারাতে ফাইল.টোবাইটআরে () রয়েছে । এর বিভিন্ন সুবিধা রয়েছে:
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Path;
File file = getYourFile();
Path path = file.toPath();
byte[] data = Files.readAllBytes(path);
সম্প্রদায়ের উইকি উত্তর হিসাবে একই পন্থা ব্যবহার করে, তবে ক্লিনারটি এবং বাক্সের বাইরে সংকলন (আপনি যদি অ্যাপাচি কমন্স লাইবস, যেমন অ্যান্ড্রয়েডে আমদানি করতে না চান তবে পছন্দসই পদ্ধতি):
public static byte[] getFileBytes(File file) throws IOException {
ByteArrayOutputStream ous = null;
InputStream ios = null;
try {
byte[] buffer = new byte[4096];
ous = new ByteArrayOutputStream();
ios = new FileInputStream(file);
int read = 0;
while ((read = ios.read(buffer)) != -1)
ous.write(buffer, 0, read);
} finally {
try {
if (ous != null)
ous.close();
} catch (IOException e) {
// swallow, since not that important
}
try {
if (ios != null)
ios.close();
} catch (IOException e) {
// swallow, since not that important
}
}
return ous.toByteArray();
}
আমি বিশ্বাস করি এটি সহজতম উপায়:
org.apache.commons.io.FileUtils.readFileToByteArray(file);
রিডফুলি বর্তমান ফাইল পয়েন্টার থেকে শুরু করে এই ফাইলটি থেকে বাইট দৈর্ঘ্য বাইটগুলি বাইট অ্যারেতে পড়ে। অনুরোধ করা সংখ্যা বাইট না পড়া পর্যন্ত এই পদ্ধতিটি ফাইল থেকে বারবার পড়ে। এই পদ্ধতিতে অনুরোধ করা বাইটের সংখ্যা না পড়া পর্যন্ত, স্ট্রিমের শেষটি সনাক্ত করা যায় না বা একটি ব্যতিক্রম ছুঁড়ে ফেলা অবধি অবরুদ্ধ হয়।
RandomAccessFile f = new RandomAccessFile(fileName, "r");
byte[] b = new byte[(int)f.length()];
f.readFully(b);
আপনি যদি পূর্ব-বরাদ্দ করা বাইট বাফারে বাইটস পড়তে চান তবে এই উত্তরটি সাহায্য করতে পারে।
আপনার প্রথম অনুমান সম্ভবত ব্যবহার করা হবে InputStream read(byte[])
। তবে, এই পদ্ধতির একটি ত্রুটি রয়েছে যা এটি ব্যবহার করা অযৌক্তিকভাবে শক্ত করে তোলে: কোনও ইওএফের মুখোমুখি না হওয়া সত্ত্বেও অ্যারেটি পুরোপুরি পূরণ হবে এমন কোনও গ্যারান্টি নেই।
পরিবর্তে, একবার দেখুন DataInputStream readFully(byte[])
। এটি ইনপুট স্ট্রিমগুলির জন্য একটি মোড়ক এবং এতে উল্লিখিত সমস্যা নেই। অতিরিক্তভাবে, যখন ইওএফ সম্মুখীন হয় তখন এই পদ্ধতিটি ছোঁড়ে th নিতান্তই ভালো.
একে অপরের বিরুদ্ধে জাভা ফাইল ফাইল পড়ার বিভিন্ন পদ্ধতি পরীক্ষা করার সময় কেবল নীচের উপায়ে java.io.File কে একটি বাইটে রূপান্তরিত করে না, আমি কোনও ফাইলে পড়ার দ্রুততম উপায়ও বলেছি :
java.nio.file.Files.readAllBytes ()
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
public class ReadFile_Files_ReadAllBytes {
public static void main(String [] pArgs) throws IOException {
String fileName = "c:\\temp\\sample-10KB.txt";
File file = new File(fileName);
byte [] fileBytes = Files.readAllBytes(file.toPath());
char singleChar;
for(byte b : fileBytes) {
singleChar = (char) b;
System.out.print(singleChar);
}
}
}
আমাকে তৃতীয় পক্ষের লাইব্রেরি ব্যবহার না করেই আরও একটি সমাধান যুক্ত করুন। এটি স্কট ( লিঙ্ক ) দ্বারা প্রস্তাবিত একটি ব্যতিক্রম হ্যান্ডলিং প্যাটার্নটি পুনরায় ব্যবহার করে । এবং আমি কুরুচিপূর্ণ অংশটি একটি পৃথক বার্তায় স্থানান্তরিত করেছি (আমি কিছু ফাইলUtils শ্রেণিতে লুকিয়ে রাখব;))
public void someMethod() {
final byte[] buffer = read(new File("test.txt"));
}
private byte[] read(final File file) {
if (file.isDirectory())
throw new RuntimeException("Unsupported operation, file "
+ file.getAbsolutePath() + " is a directory");
if (file.length() > Integer.MAX_VALUE)
throw new RuntimeException("Unsupported operation, file "
+ file.getAbsolutePath() + " is too big");
Throwable pending = null;
FileInputStream in = null;
final byte buffer[] = new byte[(int) file.length()];
try {
in = new FileInputStream(file);
in.read(buffer);
} catch (Exception e) {
pending = new RuntimeException("Exception occured on reading file "
+ file.getAbsolutePath(), e);
} finally {
if (in != null) {
try {
in.close();
} catch (Exception e) {
if (pending == null) {
pending = new RuntimeException(
"Exception occured on closing file"
+ file.getAbsolutePath(), e);
}
}
}
if (pending != null) {
throw new RuntimeException(pending);
}
}
return buffer;
}
public static byte[] readBytes(InputStream inputStream) throws IOException {
byte[] buffer = new byte[32 * 1024];
int bufferSize = 0;
for (;;) {
int read = inputStream.read(buffer, bufferSize, buffer.length - bufferSize);
if (read == -1) {
return Arrays.copyOf(buffer, bufferSize);
}
bufferSize += read;
if (bufferSize == buffer.length) {
buffer = Arrays.copyOf(buffer, bufferSize * 2);
}
}
}
ফাইল থেকে বাইট পড়ার জন্য অন্য উপায়
Reader reader = null;
try {
reader = new FileReader(file);
char buf[] = new char[8192];
int len;
StringBuilder s = new StringBuilder();
while ((len = reader.read(buf)) >= 0) {
s.append(buf, 0, len);
byte[] byteArray = s.toString().getBytes();
}
} catch(FileNotFoundException ex) {
} catch(IOException e) {
}
finally {
if (reader != null) {
reader.close();
}
}
//The file that you wanna convert into byte[]
File file=new File("/storage/0CE2-EA3D/DCIM/Camera/VID_20190822_205931.mp4");
FileInputStream fileInputStream=new FileInputStream(file);
byte[] data=new byte[(int) file.length()];
BufferedInputStream bufferedInputStream=new BufferedInputStream(fileInputStream);
bufferedInputStream.read(data,0,data.length);
//Now the bytes of the file are contain in the "byte[] data"
এটা চেষ্টা কর :
import sun.misc.IOUtils;
import java.io.IOException;
try {
String path="";
InputStream inputStream=new FileInputStream(path);
byte[] data=IOUtils.readFully(inputStream,-1,false);
}
catch (IOException e) {
System.out.println(e);
}
ইন JDK8
Stream<String> lines = Files.lines(path);
String data = lines.collect(Collectors.joining("\n"));
lines.close();