Create a program in Java that inverts all the bytes of a binary file. You can use the FileStream object to read and write binary files.
FileStream
You must create a new file with the same name but with the extension .inv.
import java.io.*; public class ReverseFile { public static void main(String[] args) { String inputFileName = "app.exe"; String outputFileName = "app.inv"; try (FileInputStream inputFile = new FileInputStream(inputFileName); FileOutputStream outputFile = new FileOutputStream(outputFileName)) { long fileSize = new File(inputFileName).length(); byte[] data = new byte[(int) fileSize]; inputFile.read(data); for (long i = fileSize - 1; i >= 0; i--) { outputFile.write(data[(int) i]); } System.out.println("File reversed successfully."); } catch (IOException e) { e.printStackTrace(); } } }
Click here to view the exercise solution
Share it on your social media and challenge your friends to solve programming problems. Together, we can learn and grow.
The code has been successfully copied to the clipboard.
Continue improving your Java programming skills with our selection of practical exercises from the lesson. Click on Practice and challenge your knowledge!
Create a Java program that reads ID3 v1 specification tags from an MP3 music file.
Create a program in Java to read the dimensions of an image in Windows bitmap format.
Create a program in Java to encrypt an image in Windows bitmap format.
Create a program in Java that inverts all the bytes of a binary file.
Create a Java program that makes copies of both text and binary files.
Create a Java program that divides text or binary files into parts of 5 Kb each.
Create a hexadecimal viewer in Java that shows the contents of a binary file on screen as follows.
Practice with exercises in Java to manage binary files. Learn how to create, update, and search binary files in different ways.
Free programming course with practical exercises and solutions in C#. Start learning right now!
Take your Exercises C# lessons everywhere with our Android app. Download it now from Google Play
Own and third party cookies to improve our services. If you go on surfing, we will consider you accepting its use.