the main Java GUI widget toolkit that is packaged with the standard Java SDK. Contained in the package `javax.swing`

learn more… | top users | synonyms (2)

1
vote
1answer
23 views

“java.lang.ArrayIndexOutOfBoundsException: -1” while adding tab to “javax.swing.JTabbedPane”

Please help to resolved java.lang.ArrayIndexOutOfBoundsException. I am getting this exception quite randomly and the worst part is that I could not reproduce exception. Stack-Trace shows addTab() ...
0
votes
1answer
20 views

Command to find default program related to file(.pdf) using command line in windows OS

Is there any command through which i can find that user has selected this program(Like: Adobe reader/adobe acrobat) as default program for specific file extension(Like: .pdf) in windows OS. More ...
0
votes
2answers
37 views

Sorting Table is wrong when the sort button be pressed more than once?

I have a Problem here. I create program to add data to the table and sort it when i press the button. when i press the sort button once, it isn't wrong. but when i press again it is wrong. so why? ...
1
vote
3answers
37 views

How set location of an image in a JFrame

I'm trying to set the the location of an image in a JFrame. I thought label.setLocation(100, 100); would set the location of the image to 100, 100 (top left corner), but it doesn't seem to do ...
0
votes
3answers
51 views

Swing gui not displaying, but no errors?

I am working on a java program that solves sudoku puzzles. So far all I have coded is a class that draws the board with swing, and another class that calls the gui class. When I try and run the ...
0
votes
1answer
39 views

Displaying correct information in JPanel

I'm having trouble updating JPanels with new data. I'm working on a game, the basic concept of what I'm trying to do is load a player and display the items he holds in a JPanel (set out in a box ...
0
votes
1answer
33 views

Hangman GUI applet java

Big trouble here. the errorLabel isn't able to show the errorCounter, instead javax.swing.JLabel[.670... appears by clicking new game, the keyboard reset but not the wordLabel(which put the new word ...
1
vote
1answer
37 views

JScrollPane containing a JPanel won't scroll

I have a JScrollPane which contains a JPanel which contains a collection of JPanels. The collection size can be changed which is why I have it in a JScrollPane. For some reason, no matter what I do, ...
-2
votes
0answers
21 views

Keno applet GUI java code [closed]

Hey can anybody explain this code(section by section preferred) and correct if there is anything wrong? Thanks a lot for looking at the code. I am a beginner in java code, how can I improve my logic ...
3
votes
0answers
37 views

Why hasn't EventListenerList been replaced? (Or: what are the pitfalls in replacing it?)

Our legacy app is stuck with a terrible framework that involves a ridiculous number of EventListeners (~100,000) for the simplest operations. I'm guessing this is beyond what ...
1
vote
1answer
23 views

Java - JFormattedTextField does not allow input on first attempt

I am making a little Sudoku game with a GUI and use a MaskFormatter for the JFormattedTextFields: formatter = new MaskFormatter(s); formatter.setValidCharacters("123456789"); But my problem is ...
1
vote
3answers
49 views

Java swing not recognized

I am just starting out in Java but have hit problems in multiple tutorials when it comes to using swing. This sample code from Java for Dummies threw the following error: helloapp.java: public ...
0
votes
1answer
26 views

Revalidate and repaint - Java 6

I am trying to compile my java class files however I am unable to do so due to the java on my school computer being old (java 6) whereas on my own laptop it works (java 7) import ...
0
votes
1answer
12 views

add rows to jTable

I'm doing an exercice about java swing, now it's time to add rows from a database to the jTable, I know that the method to do this is "addRow()" but netBeans doesn't suggest it to my and underline the ...
-6
votes
1answer
54 views

Unable to access variables of one class from another in java [closed]

I have three frames with 3 classes in java respectively. I want to access the text from one frame for other? I want to get the text entered in the editable combo box of one frame and search for it on ...
0
votes
2answers
40 views

Reading a file after pressing a button

I have tried to create a program that lets you to choose a file,reads it and then prints the results out... This is what i have so far public class Main { public static void main(String[] args) { ...
0
votes
2answers
27 views

Add row to top of AbstractTableModel

I have a abstractTableModel which I need to add rows to the top, so the user can see the most recent entered data, but default it adds to the bottom of the table. Any suggestions?
3
votes
1answer
31 views

Trouble Drawing Arcs Between Adjacent Edges of Triangle

I have been trying to write the code for generating random triangles and drawing arcs between the adjacent edges of the trianglefor describing the angle between them. It almost works. But it seems my ...
0
votes
1answer
19 views

Adding database column to JComboBox

I've searched around for the answer to this, but to no avail. When I compile this, it just returns the last row of my table in the database and not a list of the entire column as I expect. I believe ...
0
votes
1answer
21 views

Jtable filtering failed

I have a Jtable an i want to filter it based on user entries. I have write this code: data_table = new JTable(model); // create data table data_table.setModel(new DefaultTableModel(pin, colNames)); ...
1
vote
5answers
50 views

I want to add buttons to each tab

I have three tabs total and when the user clicks on the different tabs I need there to be buttons that the user can click. I also want to know how to make my window bigger. Thanks in advance for your ...
1
vote
3answers
53 views

JFrame leaking memory?

So today I opened Task Manager and saw that my application leaks 200kbs of memory every second. I looked at my main loop: public final void run() { try { Thread.sleep(27); } catch ...
-2
votes
0answers
25 views

Export html code page as tiff Image from swing application [closed]

Have one html code file which is generated using Velocity template. Now I want to generate tiff image of that html UI from swing application. I don't have any place to show html page. Just want to ...
1
vote
2answers
40 views

java - JProgressBar while method is running

The Find() method is a sample of my method that makes a search of a word into some files. I call it from a Button_Start mouseclicked event. Here is my code: public void Find (String word) { ...
0
votes
0answers
16 views

Master/Detail form + JComboBox

Unfortunately I am stuck on something that should be trivially easy. I created a master/detail sample form with netbeans. The wizard created the detail lines as text fields. But I need one of them ...
0
votes
1answer
52 views

Thread output listener

I need to make a thread that start at swing button push and wait for input from rs232, process it and return String to my variable. The question is how to do that? it should be something like that: ...
0
votes
1answer
53 views

Swing components freezed because of few methods

I am facing a problem with a Java Swing based application that I have created for professional purpose. A new class PanelUserInput and I have created a separate listener for this class called ...
0
votes
1answer
20 views

unable to retrieve Unicode data correctly from GUI

I am sending out unicode messages from pc to phone using jsms api. When I use this part of the code, it works perfectly. I get the message displaying "ఈ ఒక తెలుగు సందేశం" perfectly. SmsMessage ...
0
votes
0answers
15 views

Text editing in JSVGCanvas

this is a online svg editing, it have a Text editing, can i do this in JSVGCanvas? http://svg-edit.googlecode.com/svn-history/r1771/trunk/editor/svg-editor.html
0
votes
0answers
16 views

change the default image background for MDI Application in netbeans

I want to change the default image background for MDI Application in netbeans. I googled about it and I found this article : How to change jdesktoppane default backgroud image? I did the same but ...
-4
votes
1answer
23 views

Jtable cell value changed on ke pressed event in Java

As I am a beginer in Java Programming Language, I am making an ERP, I am working with jTable, I have three columns (item quantity, rate, amount) in the manner that i am writing item quantity in a ...
-2
votes
2answers
39 views

java animation trouble getting the x and y cordinates of the mouse

so i wrote this code but im not sure of where does the mouse listener goes and also how to loop the program. im trying to achieve a particle explosion passing the x and y coordinates of the mouse when ...
1
vote
1answer
30 views

How to use JCalendar to select an element of my array?

I have a 3D array that contains 38 years, 12 months, and 31 entries for each month (regardless of how many days in that month). Like so: array[38][12][31]. I also have a JCalendar that is doing ...
0
votes
0answers
14 views

Is it possible to open SQLite manager with inside the Java Swing window?

I'm using JDBC and SQLite db file for my Java code and I'm using Firefox add on to manage the DB. Is it any possible to use any manager with in the Swing window?
0
votes
2answers
30 views

How to use JDialog in a Swing GUI?

I want to extend my JFrame Form ... with one JDialog form (I want to connect with frame, I want in the menu-bar when someone click to the HELP (from the menu) will show the new dialog box. I do not ...
0
votes
0answers
14 views

How to remove axes from XY Graph using jplot2d? Is there any way to make x axis and y axis invisible?

I need the output of the program such a way that image produced should not have the axes. I tried many ways to make it invisible but I couldn't! So please help me out. The JAR I used was "JPLOT2D". I ...
1
vote
2answers
42 views

JTable does not fill JScrollPane which is added to JPanel using GridBagLayout

I have a JPanel with GridBagLayout. The panel contains 2 rows, first row has a JLabel and second row has a JScrollPane with JTable inside. The table does not fill 100% of the scrollpane. Even I resize ...
1
vote
3answers
27 views

JSpinner's JButton to ImageIcon

Trying to replace the JButton controller of a JSpinner to ImageIcon instead. But for some reason it does not listen to any mouseclicks(installButtonListeners() in BasicSpinnerUI seems to add ...
1
vote
1answer
19 views

Toggling JCheckBox value

im trying to toggle my jcheckbox. I have set the default to check jcb2. my jcb1 is working fine but my jcb2 can't seem to be toggled on. I added a println and found that it gets printed but my jcb2 ...
0
votes
1answer
20 views

Determine who call stateChanged

I have a few sliders that look like this: //Create the slider JSlider speedSlider = new JSlider(JSlider.VERTICAL, MIN_SPEED, MAX_SPEED, initValue); speedSlider.addChangeListener(controller); ...
0
votes
1answer
18 views

Drop Shadow/Duplicate Text on JButton

As the title would suggest, I am trying to duplicate the text underneath the main text on a JButton, and move it down by one pixel. I'm trying to get a drop-shadow like effect on it, without the blur, ...
0
votes
1answer
31 views

Adjusting GUI JPanels to fit

So for this program, I am trying to have a JToolBar on the left, and this spectrum panel on the right side. I am currently adding using a BorderLayout, but as you can see, the spectrum (in cyan) I add ...
0
votes
2answers
38 views

Unable to setVisible(false) of JFrame

I am creating a Medical Shop Billing software in which I have three JFrames one of which I need to setVisible(false) on the click a JMenuItem. However each time I compile an error is displayed ...
0
votes
1answer
21 views

accessing gridLayout grids

So I'm using borderLayout panel with a girdLayout for the Center Position, I have added some objects to my gridLayout but latter on I would like to add some more information to the same grids. ...
0
votes
2answers
16 views

BorderLayout West Center East all Equal width

I am adding objects dynamically to panels then adding to the my border layout. I need the West, Center and East all to be equal size. This is what I have so far: static int width = 300;//Screen width ...
1
vote
1answer
30 views

JTree valueChanged event gets called before focusLost of another component on clicking a node

I have a JTree where each node of the tree represents some user data. The data is editable and is stored in a file/db. There are a bunch of JTextField that lets you edit/update the user data for the ...
0
votes
0answers
34 views

JPanel Wont Load Image

So I can't really figure out why I can't load an image into this JPanel....The code is kinda long, but I have it commented, so it should be fairly simple to deduce whats going on. Can anybody help? I ...
1
vote
1answer
28 views

Trying to build Sudoku board in Java Swing. NullPointerException error?

I am working on building the GUI for a java program that will generate and solve sudoku puzzles. The way I am doing it is have 1 main jpanel, with 3x3 jpanels inside it, which have 3x3 jlabels in ...
0
votes
1answer
35 views

Adding a shape to class properties

I am working on a game which has a class Player, there are 3 subclasses of player. These are different types of players who have different methods and variables. Anyhow I want to give each player a ...
1
vote
1answer
24 views

Word Wrap in JEditorPane and System Font

I'm wanting to create a large text field for a user to type something in. I also want it to use the default system font to match the look and feel that is expected. So I tried to use a JEditorPane ...

1 2 3 4 5 548