saving data to JTextPane
hi Forum,
I am trying to save data of JTextPane to File but i am not getting it.
can you help..?
outFile.close();*/
BufferedWriter out =new BufferedWriter(new OutputStreamWriter(
new FileOutputStream(fileName)));
String output= (chat.getTpAllMessages()).getText();
try{
System.out.println("Contained Text: " + (chat.getTpAllMessages()).getDocument().getText(0,chat.getTpAllMessages().getSelectionEnd()));
}catch (BadLocationException e){
// TODO Auto-generated catch block
e.printStackTrace();
}
out.write(output,0,output.length());
out.close();
thanx
Message was edited by:
p_more_java

