Top "Jtextarea" questions

A JTextArea is a multi-line area that displays plain text.

How to make text area text automatically go to the next line when line is finished?

This is my code for text field. It is not changing the line when the line ends, but continues to …

java swing jtextarea word-wrap
Setting caret position in JTextArea

I have a JTextArea. I have a function that selects some amount of text when some combination is called. It's …

java swing listener jtextarea textselection
stop horizontal scrolling in JTextArea

I want to add a JTextArea to an application. Normally that textarea contains large content and both horizontal and vertical …

java swing jscrollpane jtextarea jscrollbar
JTextArea border in java swing

I am new to java and creating UI widgets using java and created the following class for the same. But …

java swing jtextarea
Simultaneously update text area while typing in text field

I want to update my text area along with typing in the text field but i get a delay of 1 …

java swing jtextfield jtextarea
ActionListener for a specific text inside a JTextArea?

I have in my app a chat component which has a JTextArea on it. Now, how can I add an …

java swing events mouseevent jtextarea
JTextArea and JTextField internal padding on text

I would like to increase the spacing / padding / insets for the JTextField and JTextArea. Effectively increase the spacing between the …

java swing jtextfield jtextarea
How to auto scroll down JTextArea after append?

I've created a JFrame, with a JTextArea. I would like to scroll down the textarea automatically, after each append. How …

java swing jtextarea
Why is my JTextArea not updating?

I have code as follows: class SimplifiedClass extends JApplet { private JTextArea outputText; // Lots of methods public void DoEverything() { String output = ""; …

java swing concurrency jtextarea event-dispatch-thread
Writing JTextArea content into file

I have one JTextArea and a Submit button in Java Swing. Need to write the content of textarea into a …

java swing file-io jtextarea