Convert bytes to file android

Java Program to Convert File to a Byte Array

In order to illustrate the conversion of a text file present in the local directory on a machine to the byte array, we will be considering a random file named say it be ‘gfg.txt’ which is present on the local directory. Let the content inside the file be as shown below:

Note: Keep a check that prior doing anything first create a file on the system repository to deal with our program\writing a program as we will be accessing the same directory through our programs.

Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready. To complete your preparation from learning a language to DS Algo and many more, please refer Complete Interview Preparation Course.

Methods:

  1. Using read(byte[]) method of FileInputStream class
  2. Using Files.readAllBytes() method

FileInputStream is useful to read data from a file in the form of a sequence of bytes. FileInputStream is meant for reading streams of raw bytes such as image data. For reading streams of characters, consider using FileReader. read(byte[]) method of FileInputStream class which reads up to the length of the file and then converts bytes of data from this input stream into the byte array.

Procedure:

  1. Create an instance of File Input Stream with the file path.
  2. Create a byte array of the same length of the file.
  3. Read that file content to an array
  4. Print the byte array
  5. Close the instance of file input stream as it is a good practice in order to avoid any exception or error been faced during runtime and to release the memory resources making our program optimized leading to faster execution.
Читайте также:  Интерфейс системы произошел сбой андроид

Источник

Оцените статью