i am working on my semester project that is about data encryption and decryption.i have done the encryption part successfully and logically the decryption should also be easy and it is easy but i cant figure out how to do it in Java.Because i am not expert in java.i have a string which looks like this
cipher_string = "57 630 88 372 51 421 39 629 26 450 67 457 14 522 72 360 55 662 57 550 74 449 12 530 73 619 69 367 43 431 75 617 97 620 51 540 64 529";
the above string is actually the ecrypted form of the plain text
user_plain_text = "hello this is bravo";
now if you see carefully you will figure out that the first number in cipher_string is a double figure number then the 2nd number is a 3 figure number then again a two figure number and then 3 figure number and so on....
now the 2 figure numbers are actually the names of the .txt files...ie 57.txt and 88.txt and 51.txt and so on..while the 3 figure numbers are actually the indexes of char inside file..now i want to open these .txt files in a specific sequence i.e open 57.txt file then go to index 630 and print the char at 630 in file 57.txt to user then again open file 88.txt and go to index 372 and print the char at 372 in file 88.txt to user and so on...but i don't know how to do it in java...please if some body can help me even if in pseudo code..(sorry for my bad English)