Click here to Skip to main content
15,892,674 members
Home / Discussions / Java
   

Java

 
AnswerRe: Merge Sort problem Pin
427748018-Sep-09 18:13
427748018-Sep-09 18:13 
GeneralRe: Merge Sort problem Pin
snssewell18-Sep-09 18:25
snssewell18-Sep-09 18:25 
GeneralResolved Pin
snssewell18-Sep-09 18:29
snssewell18-Sep-09 18:29 
GeneralRe: Merge Sort problem Pin
427748018-Sep-09 18:30
427748018-Sep-09 18:30 
GeneralRe: Another Problem now Pin
snssewell18-Sep-09 18:46
snssewell18-Sep-09 18:46 
AnswerRe: Merge Sort problem Pin
427748018-Sep-09 18:59
427748018-Sep-09 18:59 
GeneralRe: Finally resolved..I hope..lol Pin
snssewell18-Sep-09 19:20
snssewell18-Sep-09 19:20 
QuestionOutput String returned from encryption/decryption Fuction into a text file???Help please!!!! Pin
ChiSmile18-Sep-09 16:36
ChiSmile18-Sep-09 16:36 
Hi all,
I have the following function call that returns a string value after encryption or decryption. My problem is how to write this string value to a text file.

String outStr= RunRC4(InputFile,aKey); //function call

//this does not work properly as it does not allow all the values to //be decrypted.
try {
			BufferedWriter out = new BufferedWriter(new FileWriter(args[2], true)); // we're appending data
			out.write(outStr + "\n");
			out.close();
			} catch (Exception e) {
			System.err.println(e.getMessage());
			}

public static String RunRC4(String InputFile,String aKey) //declaration



Can anyone help?
Thanks in advance!!!
AnswerRe: Output String returned from encryption/decryption Fuction into a text file???Help please!!!! Pin
427748018-Sep-09 17:54
427748018-Sep-09 17:54 
Questionhow to move cookie value from https to http page? [modified] Pin
sangeethanarayan17-Sep-09 21:54
sangeethanarayan17-Sep-09 21:54 
AnswerRe: https to http Pin
Nagy Vilmos17-Sep-09 21:57
professionalNagy Vilmos17-Sep-09 21:57 
AnswerRe: how to move cookie value from https to http page? Pin
427748018-Sep-09 18:32
427748018-Sep-09 18:32 
GeneralRe: how to move cookie value from https to http page? Pin
sangeethanarayan20-Sep-09 19:06
sangeethanarayan20-Sep-09 19:06 
QuestionWhich laguages does FreeTTS Supported. Pin
sharkbc17-Sep-09 17:01
sharkbc17-Sep-09 17:01 
AnswerRe: Which laguages does FreeTTS Supported. Pin
427748017-Sep-09 18:22
427748017-Sep-09 18:22 
QuestionMy code won't complile right in JCreator Pin
Dale Leach II17-Sep-09 13:38
Dale Leach II17-Sep-09 13:38 
AnswerRe: My code won't complile right in JCreator Pin
427748017-Sep-09 15:55
427748017-Sep-09 15:55 
AnswerRe: My code won't complile right in JCreator Pin
David Skelly17-Sep-09 22:37
David Skelly17-Sep-09 22:37 
QuestionLooking for reading Material on Concurrent Programming in Java Pin
that_dude_tj17-Sep-09 8:43
that_dude_tj17-Sep-09 8:43 
AnswerRe: Looking for reading Material on Concurrent Programming in Java Pin
427748017-Sep-09 15:45
427748017-Sep-09 15:45 
GeneralRe: Looking for reading Material on Concurrent Programming in Java Pin
that_dude_tj18-Sep-09 13:59
that_dude_tj18-Sep-09 13:59 
Questionhow to implement text to speech converter in java Pin
gharekiran16-Sep-09 23:13
gharekiran16-Sep-09 23:13 
AnswerRe: how to implement text to speech converter in java Pin
TorstenH.17-Sep-09 0:05
TorstenH.17-Sep-09 0:05 
AnswerRe: how to implement text to speech converter in java Pin
427748017-Sep-09 15:44
427748017-Sep-09 15:44 
QuestionImplementing a "Paint Can"-type tool Pin
max2929716-Sep-09 14:21
max2929716-Sep-09 14:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.