Answers for "how to read txt file and convert content of that file into binary and store its binary file using java"

1

how to change my file into binary data using java

File file = new File("filename.bin");
byte[] fileData = new byte[file.length()];
FileInputStream in = new FileInputStream(file);
in.read(fileData):
in.close();
// now fileData contains the bytes of the file
Posted by: Guest on February-12-2021
1

how to change my file into binary data using java

String content = "";
for(byte b : fileData)
    content += getBits(b);
// content now contains your bits.
Posted by: Guest on February-12-2021

Code answers related to "how to read txt file and convert content of that file into binary and store its binary file using java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language