Tagged Questions
0
votes
1answer
21 views
How to get location of textarea in JPanel
I have created a JFrame containing 2 JPanels(panel1,panel2).i have added panel2 in panel1.
panel1.add(panel2);
i have added a text area into panel2.
panel2.add(textarea);
finally panel1 to ...
1
vote
3answers
51 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
42 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
32 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();
...
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, ...
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 ...
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
61 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
45 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
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
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
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 ...
-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++){
...
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 ...
2
votes
1answer
46 views
How to force JContainer to re-layout itself?
I have JFrame with BorderLayout: JTextArea in the NORTH and JButton in the SOUTH. I pack() it in the beginning.
My code changes font size for the text area. How do I force the dialog window and its ...
0
votes
0answers
46 views
jTextArea background not changing after setEnabled(false)
i have set setEnabled(false) for my jTextArea in a netbeans. The textarea is disabled but its background colour is not changing from white to a 'grayish' as expected. This only happens if i run my ...
1
vote
1answer
88 views
Selecting text in JTextArea does not show any selection color
I have this piece of code in which a JTextArea is added to a JFrame.
Whenever the user presses the ↑ key the content of the JTextArea
should be selected.
Here is the code
import javax.swing.*;
...
-1
votes
1answer
39 views
Jtextarea height increase dynamically [closed]
I am coding in netbeans,my question is whenever I add text in jtextarea dynamically the textarea should increase its height according to the content so that full content is shown and I dont want ...
-1
votes
1answer
47 views
How to display results of for loop in jtextarea? Java
I want to display all the results of my tweet from a for loop into jtextarea. And display each in a row.
Please check my code fyi:
try {
ResponseList<Status> a = ...
0
votes
0answers
51 views
Auto scrolling a textArea with scrolllRectToVisible
So I've set up a JTextArea inside a scroll pane and with the button I've set up, each time I click it I want the view of the textarea to drop down one line. (So with two clicks at the top of the ...
2
votes
1answer
55 views
how to write result to JTextArea
I have question - how to write result/ DB Select to JTextArea. My JButton´s method is:
public void actionPerformed(ActionEvent evt){
try{
Class.forName("com.mysql.jdbc.Driver");
...
0
votes
0answers
50 views
Create rectangle from user input
I have a program which so far takes a user input, puts it into an array and prints into a TextArea. However, I also need it to create a bar chart like set up, where the user will input "1" in the day ...
0
votes
1answer
93 views
Rainfall Chart - textfield populate array
I have to create a program that accepts user input for the day and the rainfall on that day. I have 3 classes - Rainfall Viewer, Rainfall Chart and Rainfall Frame. So far, in Rainfall Frame I have ...
-1
votes
2answers
76 views
Trying to display the results from a array to a textarea
I must count all the letters in one text area and output the results in a another text area.
I can do the counting part, but I can not get the results to display in another textarea. It only outputs ...






