File Encryption Assignment
Back when you were learning about the string class, you took a message that was inputted by the user and encrypted it by adding an integer to the Unicode value of each character. This process can also be applied to file encryption.
Your task is to take a text file that you would like to protect, write a program that will protect it by encrypting it and then have the ability to de-crypt the file. Your program should:
Hints:
Your text files should like something like this: |
|
Regular Text File - before |
Text File that has been encrypted - after |
|
|
Some useful code for dealing with the end of a file:
FileReader myFile = new FileReader("abc.txt"); BufferedReader buff = new BufferedReader(myFile);
try { boolean eof = false; while (!eof) { String line = buff.readLine(); if (line == null) eof = true; else System.out.println(line); } } *** Don't forget the catch statement **** .... YOU DON'T THINK I'M GOING TO GIVE YOU ALL OF THE CODE!!