Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My JEditorPane automatically wraps words; I don't want that. All I want is a horizontal bar to appear that allows the user to write as much as desired. How can I do that? I have tried several methods. I have overridden the getScrollableTracksViewportWidth(), but that didn't help. Does any one know how I can turn off the word wrap?

share|improve this question
1  
If you don't need the features from JEditorPane, you could use a JTextArea which suppors a setLineWrap() method. – a_horse_with_no_name Jan 22 '12 at 12:44
1  

3 Answers

up vote 3 down vote accepted

Try this http://java-sl.com/wrap.html

share|improve this answer

A quick google search lead me to this page, which implements it by subclassing the text pane and overriding the getScrollableTracksViewportWidth() method:

// Override getScrollableTracksViewportWidth
// to preserve the full width of the text
public boolean getScrollableTracksViewportWidth() {
    Component parent = getParent();
    ComponentUI ui = getUI();

    return parent != null ? (ui.getPreferredSize(this).width <= parent
        .getSize().width) : true;
}
share|improve this answer
Didn't work for me. – Qix Dec 20 '12 at 8:19

why don't you use a jTextField?

it's only one line.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.