Saving problem ?
HI
i getText from the textarea and saves it in to string like this...
String retreive = textarea.getText();
try
{
RandomAccessFile logfile =new RandomAccessFile("c:\\saved.txt","rw");
logfile.writeBytes(retreive);
}
catch(IOException e)
{
System.out.println("cannot write on to log file....");
}
If i entered any 'enter' keys the program will run smoothly and save it into file..
But the problem is when i press enter there is a square symbol in the saved file...
How can i save it to the file as i entered in textarea...
Is there any idea without that square symbol...
Would anybody please tell me......

