write to JEditorPane

D

dendeezen

Hi,
This is e real newbie question.

I try to write some text to A JEditorPane

<snip>
JEditorPane display = new JEditorPane();

public void writedisplay() {
display.setText( "first!" );
display.setText( "last!" );
}
</snip>

When I try to get it to another file (to safe it)
<snip>
try {
FileWriter out = new FileWriter(outputfile);
out.write(display.getText());
out.close();
}
</snip>
it contents only the last textline.
I guess I have to adjust my writedispay() method?

Thanks for helping,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,076
Latest member
OrderKetoBeez

Latest Threads

Top