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
votes
0answers
17 views

JList toArray method - display different information about a single class in seperate JList

I have two JLists and an ArrayList of Items in my Main Class and my Player class private ArrayList<Item> allItems= new ArrayList<Item>(); listItemsShop= new ...
0
votes
0answers
12 views

Download a BLOB file from database

I need to create a JButton to download a BLOB file from oracle database. This is my JButton code: JButton btnsave = new JButton("Save"); btnsave.setBounds(478, 542, 120, 23); ...
-3
votes
0answers
21 views

JAVA : Search on a JTable

I've created a JTable with the first column containing only strings, I want to implement a special search for this JTable, when typing a letter let's say "S" it will select the first cell with value ...
-6
votes
0answers
47 views

The loop FOR only loop 140 times on java applet

I have an applet. This applet displays Selectionsort by Image step by step. I use for loop. But it only loops for 140 times and it is bad. I can't find any problem in my code on method swaplabel(). ...
0
votes
0answers
21 views

Swing double Buffering and Animation

I am trying to prevent redrawing an animation by the EDT. The first thing i have done is excluding the actual drawing tasks into a different thread, writing into a VolatileImage, which gets redrawn by ...
-2
votes
5answers
41 views

How can I add a date from string to a JComboBox

Hi guys just trying to have on the JComboBox dates that are retrieved from a string...but also able to change on GUI if I want to...Im going crazy over this because I dunno how to do it...Cheers =) ...
-1
votes
1answer
22 views

Restrict user to acces parent winow without closing Child one

I have one JFrame which is parent one. Using one of the button from parent JFrame, openning new JFrame which is child window. How can I restrict user to acces parent winow without closing Child one? ...
0
votes
1answer
36 views

Where is my second JPanel going?

I'm trying to write a basic GUI application: it's just a scrollable window with text boxes and a few buttons. I've set up the JFrame and JScrollPane as follows: public class MainFrame extends JFrame ...
2
votes
4answers
46 views

which LayOut Manager is most suitable for my GUI?

I am struggling with the Layout Manager choice. I have to set a GUI which is basically like a stack, for instance: --------------- ' ' ' --------- ' ' | | ' ' --------- ' ' ...
-1
votes
2answers
45 views

JPanel is not refreshing properly

A friend of mine sent me a project and ask me to make it more clean, the project is a JFrame with a Container which has some labels placed by images and they change according to some parameters, what ...
0
votes
1answer
36 views

Error: “Uncompilable source code”

I am in the preliminary stages and can't seem to get the program to run regardless of what I try. I think the issue has something to do with how I am calling the keyword "this" but I can't be sure. ...
-2
votes
0answers
23 views

How to make a normal button look like a toolbar button [closed]

Buttons in a toolbar have different look and feel from normal buttons. What should I do if I want a normal button has a toolbar button UI?
1
vote
3answers
33 views

Extending JTable and displaying in a JFrame

My code is still heavily in progress but my problem is that my class that extends JTable will not display in a JFrame. Here is my class that extends JTable. Secondly, I would like to know if the ...
0
votes
1answer
19 views

JCalendar set specific date colors

I am using the code from the solution to set the colors of a specific date in toedter's JCalendar at Add specific background colors to JDaychooser Dates. The problem with this solution is that it sets ...
0
votes
1answer
24 views

Dynamic TextArea but not display properly

I've already ask about my project before here. I've modified it. Look at my code. import javax.swing.*; import javax.swing.text.*; import java.awt.*; import java.io.*; import ...
1
vote
2answers
34 views

Having trouble stopping the pieces in my Tetris game(Java swing)

I'm making a tetris game in Java, and I am having a little trouble making the current piece stop when they hit another piece that's already landed. I have separate classes for each tetromino shape. ...
1
vote
1answer
17 views

Can JavaFX Webview send a notification?

I'm pretty new to using JavaFX and Webview. What I want to do is when the address of the webengine (i assume this is accessed through webengine.getLocation()) changes to a specific web address to fire ...
0
votes
0answers
27 views

How to align background component of a pane to the right?

I have a component "graphEditorPane" which extends from JGraph. Now I have this code : graphEditorPane.setBackgroundComponent(situationLabel); the problem is that this situationLabel is always ...
0
votes
1answer
17 views

How to convert JGraph to a glass pane?

I have a class :public class GraphEditorPane extends JGraph and I am using this "GraphEditorPane" as follows : public JScrollPane getGraphPaneScrollPane() { if (graphPaneScrollPane == null) { ...
-2
votes
2answers
42 views

Dynamically creating JButtons? [closed]

I was wondering if it was at all possible to create buttons on based on a number given by the user? For example, if I press a button, and I have 5 options, I want the application to create 5 buttons, ...
0
votes
1answer
45 views

setSelected() with JRadioButton r[]=new JRadioButton[3] not working [duplicate]

Here I made a dummy Programme.... import javax.swing.*; import java.awt.*; import java.awt.event.*; class MyClass1 implements ActionListener { JFrame fr; JRadioButton opt[]=new ...
-1
votes
2answers
36 views

Java GUI JScrollPane

I am a beginer at programing and i wanted to add a scroll panel to a JTextArea so i tried to research tutorials online. i followed the examples but its not working can someone plz tell me what i am ...
1
vote
2answers
41 views

Java / Swing -> Creating a notification JFrame, and the error “The frame is displayable”

Ok, I am not that versed in Java / Swing, and I am running into a problem. My application is throwing this error: "Exception in thread "AWT-EventQueue-0" java.awt.IllegalComponentStateException: The ...
-2
votes
1answer
41 views

Swings setSelected() not working for array of JRadioButtons [closed]

JRadioButton opt[] = new JRadioButton[4]; opt[0].setSelected(false); //not working JRadioButton r1 = new JRadioButton(); r1.setSelected(false); //working Can anyone tell my why the first call to ...
-5
votes
0answers
58 views

Masking credit card without altering model value

I am looking for info on "masking" sensitive date. Specifically, I want to obscure all but the last 4 digits of a credit card number, ex 9999999999999999 is displayed as ##############9999 1) Only ...
1
vote
2answers
27 views

How to get text from JTextarea into OutputStream or print text from JTextarea into console in Java

import java.io.*; import java.awt.event.*; import java.awt.*; import javax.swing.*; import java.net.*; class Clients implements ActionListener { JFrame fr; JPanel p1,p2; JTextArea ...
0
votes
0answers
20 views

Java applet using JavaFx

I'm developing an applet. I want to use JavaFx to create the controls. Currently, I'm using An JFXPanel. Here is the code: private JFXPanel jfxPanel; private Canvas canvas; private Scene scene; ...
0
votes
2answers
36 views

Swing: Place jTables and jButtons

I have a jFrame with 2 jTables (inserted in 2 jScrollPanes). Then, I have 3 jButtons for each jTable. How can I place them to have the following result: I don't know very well what Layout to use to ...
1
vote
1answer
30 views

JPanel: extra spaces between borders of nested GridLayout tables

I'm working on my first Java Swing project (really my first GUI project, unless you count client-side web programming), and I'm having an aesthetic issue. I'm making a Sudoku board in a JPanel. The ...
0
votes
1answer
24 views

Using XML to populate a JComboBox - something missing

it's me again. I have the following XML file: <?xml version="1.0"?> <components> <resources> <resource id="House"> <id>int</id> ...
0
votes
4answers
63 views

Swing vs JavaFx for desktop applications

I have a very big program that is currently using swt. The program can be run on both windows, mac and linux, and it is a big desktop application with many elements. Now swt being somewhat old I would ...
0
votes
2answers
28 views

Draggable component that is larger than JFrame (JScrollPane with invisble scrollbars on each side)

I have created a draggable JComponent in Java Swing and want to display it bigger than the JFrame it contains is (it's supposed to be a game map, movable by drag&drop). As i found didn't find a ...
0
votes
2answers
22 views

Unified Toolbar in Swing not working properly

I followed this tutorial: http://explodingpixels.wordpress.com/2008/05/02/sexy-swing-app-the-unified-toolbar/ to create a native looking toolbar on the mac. The problem might be that I'm not adding it ...
1
vote
2answers
33 views

Periodically change JLabel icon

I have to change the the icon of a jLabel every 2 seconds. I use a Timer and a Timer task to do this, but it only shows the first image. Here is the code: ImageIcon[] icons = {new ...
1
vote
3answers
46 views

How to update the view of JTable after adding a new row?

This is my TableModel, I have extended AbstractTableModel class CustomTableModel extends AbstractTableModel { String[] columnNames = ...
-1
votes
2answers
34 views

java swing compiler for programming on android tablet

Any IDE is available for android tablet to run the java swing? Currently i am using Android Java Editor IDE for Programming in android. But it's not compile the swing programs. Which IDE is compile ...
-5
votes
0answers
66 views

How to Open and Save Files using java in client systems? [closed]

I'm using JFileChooser to open and save files. It is working only in server system, not in client systems. Is it possible to make it work there?
0
votes
0answers
37 views

Single Selection of checkboxes in Jtable Column

I have a Jtable with three column . The last columns contains checkboxes . I need to enfore single selection model on them . Although i know it can be done via adding a table change listener and ...
0
votes
2answers
42 views

Swing GUI: JList with jtextFields on the rows

My problem is: I have a button that will add components to a JList when it is clicked. Each row of the list is composed by two jtextFields. The first is the ID of the row. Every time I press the "Add ...
0
votes
4answers
59 views

Track the exact location of IP address

I am trying to create an app to find the exact location of IP address. I did some research on IP addresses and many more. But whenever I try to locate an IP address it provides the location of ...
1
vote
1answer
53 views

Dynamic Simple Text Editor Java

I have modified code from here for my project. I want to make a editor that have dynamic text area. Each time I press the enter key, a new text area will create. Sorry, I cannot explain more with ...
1
vote
2answers
45 views

Giving one JButton two different actions

I am very new to java and not aware of the methods I can use to achieve what I'm trying to do. I need to make a program that simulates a light switch. One button that turns the light on and off. I ...
0
votes
1answer
14 views

JTextAreas on JPanel inside JScrollPane does not show properly

I have created a demo by swing and I want to show full text in textarea. I want to add two textarea into a scroll bar to show all component within a scroll bar. So to do that, I create a panel and ...
0
votes
1answer
29 views

A constantly scrolling JProgressBar

I would like to ask: Is it possible to have a JProgressBar that moves incessantly unless stopped explicitly? I know that the most common way to use a JProgressBar is to listen for changes and to ...
0
votes
1answer
25 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 ...
0
votes
1answer
34 views

Rollover effect for buttons in a table?

I can add buttons to a table with TableCellRender, but those buttons look different from normal buttons, e.g., when the mouse is over, there's no rollover effect. Anyone know how to make buttons in a ...
0
votes
1answer
24 views

JSplit Pane Divder Location Fixing

i have two Split Pane..here's the code..what i want is Vertical divider shouldn't be allowed to be dragged, it could be expandable, but should be fixed on the divider location mentioned, one should ...
1
vote
0answers
36 views

Memory build up in a java program GapContent$MarkData

I am currently developing an application that need to be very fast executing about every 20ms (yeah I know, should not have taken Java in the first place). I worked a lot optimizing the code so it ...
0
votes
2answers
39 views

how to call object A's method from object B which itself is a property of the A's object?

I have a login form dialog box which is displayed in the beginning step and user must login to continue to the application. the problem is that I don't know how the application should know when the ...
0
votes
1answer
27 views

Make a Java JLabel Icon Resizeable

How does one resize an image that will be placed in a JLabel? ImageIcon icon = ImageIcon("img.gif"); JLabel label = new JLabel(icon);

1 2 3 4 5 549