A JTextArea is a multi-line area that displays plain text.
0
votes
1answer
50 views
Java Unicode to TextArea
Ok, so I have tried everything even hard coding unicode into my program, but my conditional statement won't read that a √- was matched in the TextArea. I'm writing a calculator program and I want Java ...
1
vote
3answers
50 views
JTextArea not updating dynamically
I have a JTextArea inside a class that I want to update dynamically. Currently it is only displaying the text I append to it after all the processing is done. I have tried to implement the following ...
0
votes
2answers
41 views
JTextArea scrollbar
I have written a Java application that receives information from a server every 10 seconds. I am wanting to display this information on a form.
Currently I am using a JTextArea. However, once the ...
2
votes
1answer
65 views
How to remove/set JTextArea border in JTable cell in Nimbus look and feel
Edit: I have added a SSCCE code
I have extended JTextArea in TableCellRenderer because I wanted to achieve the Multiline text wrapping Mentioned in this SO question and that is working fine. Now I ...
0
votes
2answers
30 views
Send customized text from one JTextpane to another JTexpane
I am developing one simple Java based application in Swing. I have one text pane where I customize it's text using text editor like making text bold, italic, inserting smiley. Now in my application ...
2
votes
2answers
64 views
Add a line at a time to a String
I have this program that lets you open a file and it reads it in to a JTextArea all at once using the following code:
try{
String fileContents = new Scanner(new ...
-2
votes
2answers
30 views
Save string to a JTextArea in a different window
How do you display some text written in a JTextField, and display that text in another window in a JTextArea, by pressing a JButton?
This is what a mean:
I have a class called OrderMenuCartoonish:
...
0
votes
1answer
34 views
JTextArea Not Showing When repaint(), but Graphics not updating when revalidate()?
I am making a program that simulates an NHL Draft Lottery, where there should be a JTextField on the right of the screen, and draftballs being drawn on the left that bounce around. I made a class ...
0
votes
2answers
48 views
JTextArea indentation
I'm having a problem with JTextArea (not a problem though).
I want to create my own college program, one of the function is to write down and save a list of homework each day. It's text area having ...
-8
votes
5answers
55 views
What's the difference between JTextArea and JTextField? [duplicate]
As the title says, I wanted to know how different is to use a JTextArea than a JTextField.
1
vote
1answer
17 views
Sizing srollpane on textarea & textfield
I am writing a code, where i have one textfield & another one is textarea with seperate scrollpane for each.
Now what i need is i want to set the size of scrollpane such that it should ...
0
votes
2answers
31 views
I need a way to manipulate the last character in a JTextArea (by deleting it)
I have a JTextArea that I can fill with text using JButtons. I want a JButton that I can use a backspace without using the Robot class or the backspace key, but just by clicking the button on the ...
1
vote
0answers
40 views
How to make JTexArea fit the window
I have created JTextArea inserted in JScrollPane inside JPanel which is inside the JFrame.
I had to put exact number of colls and rows in the JTextArea's constructor, if didn't the the JTextArea was ...
0
votes
1answer
73 views
No output when reading file in textarea
I have modified this example to read txt files in a text area, but I seem to get no output in the textarea.
My code:
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = ...
0
votes
1answer
28 views
How to immediately show scroll bar in the JScrollPane
I added JScrollPane to my JPanel but I wanted to make scroll bar visible at the start of the program not only when the text is going out of the screen is that possible?
jpMiddle = new JPanel();
...
-2
votes
1answer
43 views
I'm getting errors in my code, could it be due to the symbols? [closed]
I'm coding in Java, and I'm making a simple currency calculator.
private void jTextField1KeyTyped(java.awt.event.KeyEvent evt) {
jTextArea1.setText("");
double ...
-1
votes
1answer
23 views
Im trying to add items to a text field in Java using NetBeans 6.9.1
My code in the action for a button press is:
@Action
public void add() {
int miles=Integer.parseInt(jTextField1.getText());
double km=miles/.621;
jTextArea1.add
}
As you can see, I ...
0
votes
1answer
43 views
Can't get String from GUI thread to 'logic' thread in java
I've been writing a program that searches through a list of numbers to find the ones that add up to a certain other number. No problems there, the algorhythm is, while probably not very efficient, ...
0
votes
0answers
27 views
Search word in textArea and Color it
Haw can I search a specified word in a textArea and color it or color the line that contain this word?
Please help me.
1
vote
1answer
27 views
Delete particular string in JTextarea
I have developing application with AWT, and I use JTextarea for displaying some string values, values are retrieving from database. In this i want delete particular string in JTextarea, I have tried ...
0
votes
1answer
51 views
How to split a frame into views with multiple lines
I'm doing this program with NetBeans and I need:
a Frame with a split view, fitting the frame's width, each view has multiple lines, where I add/remove strings, these strings can have a particular ...
0
votes
1answer
52 views
settings bounds to JTextField
I have a JTextField that a User and an Admin update to try and solve a problem that a user may have. Although when I setText(conversation) to the JTextField the text starts in the middle and when it ...
0
votes
1answer
63 views
JTextArea not show
I create an Team application in java. I add a logo which is the combination of Rectangle and Circle in JFrame but after add logo in application JTextArea not shown... Also adding new player not ...
0
votes
0answers
28 views
Multi Lingual Text display in Java jTextArea
I am receiving some Text from the MDB file which is not in English (look like french).
MS Access Displays it properly. I need to display it jTextField.
How this can be done?
I can not have predefined ...
1
vote
0answers
47 views
Force fixed size JScrollPane in DesignGridLayout
I want to display JTextArea with 2 visible row and 30 visible column.
package testing;
import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.JComboBox;
import ...
0
votes
1answer
79 views
can JLabel be added to JTextArea?
Is there a way to add a JLabel to JtextArea? cause I try the add but it didnt work and set it to visible true, is it allowed to add a JLabel inside the JTextArea? through append?
Here is my current ...
0
votes
2answers
34 views
how add Cut and find to a menu ?
I have added copy and clear to my codes and they work fine, but i still have problem with the cut and the find command that allow user to search the output area for specifed test
public class rr ...
-3
votes
3answers
68 views
Prevent scrollbars disappearing when exiting component inside the JScrollPane
I made a JPanel that contains a JScrollPane that surrounds a JTextArea. I want to hide the scrollbars when the mouse exits the JScrollPane.
If I set the MouseListener on the JScrollPane, then nothing ...
1
vote
2answers
38 views
How to add margin of text in the JTextArea?
How can I add a Margin for text to the right and top like 5 pixel each inside the JTextArea.
Here is the Image: Click Here
public class SubTextField extends JTextArea{
public SubTextField()
{
...
1
vote
1answer
57 views
Unable to read from JTextArea and write to file
i have a class which reads from a text file and writes the contents to a JTextArea. This works fine, however im unable to write the contents of the pane back to a different text file. The purpose is ...
0
votes
3answers
79 views
JTextArea Does Not Display File Contents On New Lines
I'm having an issue using a JTextArea within a scrollpane. I can read from a textfile, but the contents are all showing up on one line. I have tried various methods using append and trying to break ...
-1
votes
2answers
50 views
Java:Reading Error
I got problem in reading the file at the Gui text area hopefully you help me out guys to fix the statement of reading file thank you very much
public static javax.swing.JTextArea jTextArea1;
{
...
0
votes
1answer
69 views
My Java Actionlistener won't change a JTextArea when a JButton is pressed
This is my-almost completed Choose Your Own Adventure Game. The Actionlistener is broken. It works for the 'teh internets' part, but the rest of the Actionlistener won't make the buttons change the ...
-1
votes
2answers
57 views
Java add text to textArea and textField
I am trying to make a JTextArea and a JTextField that has pre-set text in it already so when the user clicks in the box, they can edit it so something else.
Here's what I have for my text field:
...
0
votes
1answer
44 views
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 a simple code editor with save/open functionality,
which is simple enough, but I would like to get ...
0
votes
2answers
57 views
JTextArea and long text format
This is probably very elementary question. I have a JTextArea, for example:
JTextArea area = new JTextArea();
I sometimes insert into this text area long pieces of text (for example using ...
1
vote
1answer
67 views
Simple Program Help - How To Display Multiple Lines of Text in JTextAreas From An Array List?
I'm trying to write a program that stores 5 song titles in an ArrayList "cdNames", and outputs them in a text area, one title per line, 5 lines total.
Im using the .setText method and a for loop ...
1
vote
1answer
44 views
Clear first line jtextarea
How do I clean or remove the first line in a JTextArea?
I have used so far
int start = 0;
int end = 131;
area.replaceRange (null, start, end);
but it is ...
0
votes
1answer
25 views
JTextArea text visibility
In JFrame Form I have added a jTextArea and added a text into it, while still in design mode. But when I run the form I want the text to be invisible, which is not happening. I checked the properties ...
0
votes
1answer
66 views
JTextArea Doesn't Show Up on JPanel inside JTabbedPane
I have a JTextArea that sits inside a JScrollPane which in turn sits inside a JPanel and that in turn sits inside a Tab of a JTabbedPane.
I know that text gets added to my JTextArea, but when I move ...
1
vote
3answers
47 views
Set a string to bold in JTextArea?
I don't want to set the entire text area to bold but just a selected single line. How would go about doing that?
0
votes
0answers
63 views
displaying Unicode text from database to JTextArea
I have a database that has some text in multiple languages like English, Hindi, Telugu, Tamil, Marathi.
English and Hindi text is displayed perfectly. But when i choose other languages like telugu, ...
1
vote
2answers
64 views
Java chat client jtextfield vs jtextarea
I am writting a simple server chat client using gui to make the chat box and so on. I am simply wondering if I should use jtextarea instead of jtextfield if someone wants to write a long message since ...
0
votes
1answer
48 views
How do I change the text in a JTextArea when I press a button?
I'm trying to make a Choose Your Own Adventure Game, where when I press a button, the text changes to the right scene. However, on Line 71, when I try to set the text of the TextArea, it says ...
0
votes
0answers
12 views
JTextArea duplicating instead of replacing
I created a mortgage calculator where when you enter your fields and click a button, the results will display in JTextArea in sentence form. My problem is that when I click on the button the results ...
-3
votes
1answer
73 views
Updating GUI from Client in Java socket [closed]
I'm receiving messages from ServerSocket in java and I want to display them on JTextAre, but the problem is freezing the GUI, Also I'm using SwingUtilities.invokelater but still same thing.So what ...
0
votes
1answer
38 views
Using JButtons as Tabs
Could I use JButtons as tabs? Since the JTabbedPane cannot hold the same component in multiple tabs, would there be a way for a JButton to be a tab? I know it looks like tiDE(Website) uses the ...
0
votes
3answers
39 views
Java JtextArea multiple letters
I have created a GUI that has number buttons(1-9) where if you click on 1 then the number 9, it will show 19 on the JtextArea. I am currently using
for(int i = 0; i < buttons.length; i++){
...
0
votes
1answer
129 views
ArrayIndexOutofBoundException when printing unicode words in jtext area. (Malayalam Words)
I am trying to print malayalam words fetched from rssfeeds provided by various medias like "Matrubhumi" "Indiavision" to a jtext area.
What I am doing is saving all the topics from rssfeed to a text ...
1
vote
1answer
22 views
Icon is not set right on GlassPane
I have a class that sets warning icons behind a textField when the input is different from what i expect form the user. For textfield this class works perfect, but when i'm trying to use it with a ...




