In this section, we are going to show the array of bytes from the specified file. For this, a file 'Hello.txt' is passed into the constructor of class File.
fileInputStream.read(b)- This method reads the the file in bytes.
int b[i]- This will show the character in bytes.
char b[i]- This will show the character.
Here is the code of GetByteArrayFromfile.java
import java.io.*;
|
Output will be displayed as:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Get Byte Array from File
Post your Comment