Top "Jtextarea" questions

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

Getting JTextArea to display fixed-width font without antialiasing

Does anybody know how to get JTextArea to display a fixed size font on all platforms? I want to make …

java swing fonts cross-platform jtextarea
Text-mouseover popups over a Swing JTextArea?

Is there anything out there that allows you to show a small text popup window (like a tooltip) over individual …

java swing jtextarea
Java: column number and line number of cursor's current position

I want to know the column number and row number where the cursor in JTextArea. ie. in notepad when i …

java swing cursor caret jtextarea
Automatically scroll to the bottom of a text area

I have a text area with scroll bar. At regular intervals, I am adding new lines of text to it. …

java swing jscrollpane jtextarea jscrollbar
Java - Align JTextArea to the Right

I it possible to align the text inside a JTextArea to the right (or change the text alignment in general)? |…

java swing alignment jtextarea
JTextArea default font very small in Windows

I'm using platform look-and-fell and on Linux my JTextArea is pretty readable But on Windows it uses "Monospaced 9" and the …

java swing look-and-feel jtextarea
Why am I receiving IllegalFormatConversionException in Java for this code?

I am currently working on a code that takes data from the network and print it out on a JTextArea. …

java string format jtextarea
how to insert or append new line on top of the jtextarea in java swing?

how to insert or append new line on top of the jtextarea in java swing ? i want to to append …

java swing append jtextarea
Java / Swing : JTextArea in a JScrollPane, how to prevent auto-scroll?

here's a runnable piece of code that shows what my "problem" is. I've got a JTextArea wrapped in a JScrollPane. …

java swing jscrollpane jtextarea