Tagged Questions
A JTextArea is a multi-line area that displays plain text.
12
votes
2answers
10k views
How to set AUTO-SCROLLING of JTextArea in Java GUI?
I have embedded a JTextArea on a JScrollPane and am using that JTextArea for output.
I want that whenever the ouput goes beyond the size of the JTextArea, the JTextArea scrolls automatically so that ...
9
votes
7answers
871 views
How to calculate the number of rows (and columns in each row) a text takes in a JTextArea?
After getting interested in the problem presented in the question
I tried to approach it few times and failed, and I do not like that :)
I think if the problem were split into sub issues it might ...
8
votes
3answers
1k views
JScrollPane scrolling with arrow keys
I've a JTextArea component inside JScrollPane and the text area is not editable. I would like to enable scrolling of the text area with up and down arrow keys (i.e. pressing the arrow keys will scroll ...
7
votes
4answers
692 views
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 words or letters in a Swing JTextArea? (Or a JTextArea alternative with similar ...
6
votes
2answers
130 views
Artifacts when changing background colour of JTextArea
I'm having a problem when setting the background colour of a JTextArea after I set its text. The code is as follows:
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
...
6
votes
2answers
7k views
Centering Text in a JTextArea or JTextPane - Horizontal Text Alignment
Is there a way to create horizontally centered text for a JTextArea like with a JTextField?
setHorizontalAlignment(JTextField.CENTER);
Is there a way I can accomplish the same thing with a ...
5
votes
2answers
84 views
How to reach at the end of the TextArea [closed]
Possible Duplicate:
How to set AUTO-SCROLLING of JTextArea in Java GUI?
I'm creating an application in which the user types the text in a TextField from which the text is appended to a ...
5
votes
3answers
104 views
Align Strings in columns in JTextArea
I want to print Strings in JTextArea and align them properly. Its hard to explain so I will upload the screen shot of what I am trying to achieve.
So Strings printed in each line are printed from ...
5
votes
4answers
1k views
How can I create a JTextArea with a specified width and the smallest possible height required to display all the text?
In all the examples that I can find that use a JTextArea, the height & width is known before constructing the JTextArea, and if the JTextArea would require more height, then it is put inside of a ...
5
votes
2answers
884 views
MigLayout JTextArea is not shrinking when used with linewrap=true
If I use a JTextArea with MigLayout like this:
MigLayout thisLayout = new MigLayout("", "[][grow]", "[]20[]");
this.setLayout(thisLayout);
{
jLabel1 = new JLabel();
this.add(jLabel1, "cell 0 ...
4
votes
2answers
115 views
Writing multiline JTextArea to txt file
so I Have a JTextArea for user input and then when they click a button it writes it to a text file, I have both setLineWrap and setWrapStyleWord set to true for the JTextArea.
I would like to write ...
4
votes
2answers
228 views
fancy tooltips in Swing
I have a JTable that I would like to display a fancy tooltip (basically a JTextArea) for particular cells in a column. I am using a custom cell renderer, so it would be easy if I could figure out how ...
4
votes
2answers
206 views
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 ScrollBars appear when running that application. I want to remove horizontal ...
4
votes
5answers
218 views
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 text is very small.
Why and what is the best way to fix that?
Why default ...
4
votes
3answers
252 views
How to copy an image in JTextPane java?
I want to know how to copy an image and text in JTextPane.
When I use this code, it copies just text but I want to copy text and image. How can be done this?
import java.awt.Image;
import ...
4
votes
3answers
1k views
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 m at first line than status bar shows Ln 1, Col 1.
thanks in advance...
4
votes
5answers
1k views
How to find Cursor position in a JTextArea
would someone help me in finding cursor position in a JTextArea in terms of pixel.
I have used txtArea.getCaretPosition(). But this is not the position i expect. Actually i want the cursor position in ...
4
votes
4answers
661 views
Java Log ==> JTextArea
Need: Output a Java application's log into a GUI component, such as a JTextArea.
Concern: Need to log things from any class, in a static manner. However, the GUI logger component must not be static ...
4
votes
2answers
6k views
How to limit JTextArea max Rows and Coloums?
I am using JTextArea in JScrollPane
I want to limit the maximum number of lines possible and the maximum chars in each line.
I need that the string will be exactly like on the screen, each line will ...
3
votes
2answers
46 views
How to wrap text in a JTextArea
I have a JTextArea in Java. When I place a large amount of text in it, the text area provides horizontal scrolling.
How can I make my text area wrap instead?
3
votes
1answer
37 views
Limiting JTextArea size to the size of its text
I have a JTextArea of a fixed size (300 x 33) with line wrapping enabled that I have added inside of a JPanel. Whenever one types inside it and goes past the last visible row (in this case the second ...
3
votes
3answers
93 views
Internal padding for JTextArea with background Image
My ultimate goal is to have a JTextArea with a background image. I found code online that showed me how to do this, but now I'm having an issue with the text being on top of the image.
This Is what I ...
3
votes
2answers
60 views
append a char to a JTextArea
So I'm working on making a class that will "type" letters into a JTextArea, pausing between each letter to make it look like someone is typing. The only way I can come up with is using ...
3
votes
2answers
73 views
Lock JScrollPane to bottom of JTextArea (java swing)
I currently have a setup where I have a JTextArea inside a JScrollPane so that you can scroll though the text in the box.
What I would like to do is set the JScrollPane up so that whenever new text ...
3
votes
2answers
156 views
JTextArea only with numbers, but allowing negative values
I have a JTextArea which only has to accept numbers. This is my code:
DocumentFilter onlyNumberFilter = new AxisJTextFilter();
final JTextArea areaTextoXMin = new JTextArea(String.valueOf(xMin));
...
3
votes
1answer
82 views
JTextArea painting Java?
here is the code. don't know why the text area isn't showing the backgroud image
import java.awt.*;
import javax.swing.*;
public class UserInterface extends JFrame {
public static void ...
3
votes
2answers
60 views
How can I send a string from a worker thread to a text area?
public class Client1 implements Runnable{
ServerSocket serverSocket = null;
Socket socket = null;
DataInputStream dataInputStream = null;
DataOutputStream dataOutputStream = null;
...
3
votes
1answer
713 views
How to count the number of lines in a JTextArea, including those caused by wrapping?
I have a JTextArea for which I have set word-wrap and wrap-style-word to true. I want to "pack" the JTextArea to the minimum possible height given a specified width.
To do this, I'm planning ...
3
votes
1answer
204 views
Java Swing - how to scroll down a JTextArea?
I have an application with basic chat. I use JTextArea for the buffer. After adding a message I want to scroll to the bottom. How can this be achieved? I found no member function that would allow me ...
3
votes
4answers
504 views
Line wrap in a JTextArea causes JScrollPane to missbehave with MiGLayout
I am having trouble with the same thing as this guy:
MigLayout JTextArea is not shrinking when used with linewrap=true
and I used the solution described in one of the answers; to set the minimum ...
3
votes
1answer
58 views
I want to be able to undo changes made in JTextArea. Any hints?
I want to be able to undo changes made in JTextArea. Any hints?
3
votes
1answer
116 views
Select fragment of a text in JTextArea
I need to select some fragment of a text in JTextArea. How should i do that?...
3
votes
2answers
585 views
How to know whether any changes in the jtextarea have been made or not?
I've created a jtextarea where a user can modify its content. I want to know,if there is any way, whether the user has modified its content or not before closing the application. Please help.
...
3
votes
2answers
274 views
Java Swing: Ghost text showing up when updating text on a JTextArea with partially transparent background
So here's the deal:
I've got a JPanel and a JTextArea inside that one. The JPanel has a background color which has an alpha value of 200, ie. you can paritally see the background image through the ...
3
votes
2answers
144 views
Override JTextArea.getDocument.remove()?
Okay, I want to override JTextArea's Document's remove method, I can't figure out what class to extend. I can't extend Document cause it's a interface, and that also means it must not be the document ...
3
votes
1answer
496 views
Displaying large file in JTextArea
I'm currently working in Swing UI Assignment. This work involves showing large file content in JTextArea. The file size can be as large as 2 GB.
My initial idea is to lazily load content from the ...
3
votes
1answer
344 views
Java Swingworker: Not as encapsulated class
I'm having problems passing information, updating progress and indicating "done" with a SwingWorker class that is not an encapsulated class.
I have a simple class that processes files and ...
3
votes
2answers
671 views
Why Java JTextArea doesn't receive the entire pasted text?
Using Netbeans 6.8 (Mac Version) drag and drop tool for making the GUI, I have designed a JTextArea which the user should paste his data which the program will modify and show it to him.
It is ...
3
votes
4answers
943 views
How to limit a JTextArea to only accept a legal set of characters?
Anybody know if there is an easy way to limit the allowed characters for a JTextArea. I.e. similar to JTextField using MaskFormatter.
Specifically I want to limit the allowed characters for a ...
2
votes
2answers
42 views
Decorating JTextArea
I'm appending text to a text area using .append method, I've been trying to make the text which gets appended bold and also change colour.
Is this not possible with JTextArea area, I only want one ...
2
votes
2answers
49 views
Caret position in JTextPane is not correct ?! Bug or expected behavior?
i have stumbled into the following problem:
I want to read the character in a JTextComponent's document in the location of the component's caret. When i am using a JTextPane the character returned ...
2
votes
2answers
48 views
How to stylize (make bold) text in a JTextArea?
JTextArea txt = new JTextArea();
StringBuffer sb = new StringBuffer();
sb.append("Employee Information");
sb.append("\n");
sb.append("Name:");
txt.setText(sb.toString());
Here I ...
2
votes
3answers
35 views
Assigning Insets from an Array - Java
I have the following code which uses one of the JTextAreas from an array of such Objects to assign the Insets of a JTextArea for my program. The code is as follows:
import javax.swing.*;
import ...
2
votes
1answer
126 views
How to open file in a JTextArea and write and read with FileReader and FileWriter classes
I am trying to open a file in a JTextArea and then write and read to it. I finally got it to open in the JTextArea with the FileReader and then broke it trying to incorporate FileWriter. Now I can't ...
2
votes
1answer
47 views
need JTextArea (or similar) with indented first line
How can I extend JTextArea to indent the first line? I would like to display some non-editable things in the upperleft corner area of the text area (e.g. some icons). These items would be the height ...
2
votes
1answer
65 views
How to put JLabel behind JTextArea?
I have a JFrame, JLabel and JTextArea. How put layered JLabel and JTexrArea such that JTextArea is just above Jlabel (like layered) in the JFrame?
2
votes
3answers
105 views
Appending text to a JTextArea on button press?
I've got a simple Swing GUI and I want to add a new line of text to a JTextArea after a button is pressed, simple right?
The Button and it's ActionListener function correctly (printing stuff to the ...
2
votes
1answer
110 views
Making a single line bold in a JTextPane without using HTML
I'm trying to bold a single line in my JTextPane, but nothing I do is working.
I've tried writing the line with a new, bolded font, but it didn't help.
Font font = new Font("Consolas", Font.BOLD, ...
2
votes
2answers
175 views
JTextArea show Caret while setEditable is false
How can I put Caret in JTextArea while setEditable is disabled?
A sample code when I need Caret to be visible:
public void run(){
JFrame frame = new JFrame();
JTextArea text = new ...
2
votes
2answers
242 views
Java netbeans autoresize textarea
I am using netbeans 7.0.1 to build a simple JFrame application
I am putting a textarea and a couple of buttons on using the gui builder
the buttons are on the same vertical level and the right hand ...