Tagged Questions
0
votes
1answer
30 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
1answer
72 views
Is it bad practise to utilize many threads? (through SwingWorkers)
My Java (Swing) application creates a new SwingWorker object when it needs to (e.g) download data from the Internet and do something at the same time (think display a loader). However, monitoring the ...
1
vote
1answer
43 views
GUI thread updating issue
I have a GUI class Gui:
public class Gui extends JFrame implements Runnable
{
private JPanel outer, inner;
private JLabel[][] labels = new JLabel[22][12];
private Color[][] defaultMap, map;
Thread ...
0
votes
1answer
21 views
Reset/restart my minigame using KeyAdapter with Thread on a JApplet
I can't seem to get my game to reset.
What I want to happen is once the numLives gets to 0 message should display:
press R to Restart
I added what I thought was a KeyListener for 'r' and it ...
0
votes
2answers
44 views
Kill JFrame thread in Java on windowClosing event
I am trying to write application which will create new window when pressing button, show current window count and close window and thread on closing the window.
So basically, functionality is like ...
1
vote
3answers
25 views
writing to JEditorPane fast
In the code below I would like to write onto JEditorPane the numbers 0 to 10000. However, the JEditorPane does not display anything unless either it is completely done ( printing all 0 to 10000 at ...
1
vote
5answers
64 views
Reference of graphics 2d object doesn't work in orphan Thread
I am trying to design a simple game using Graphics2D in a JPanel. I am able to draw normal objects by overriding the paintComponent() method. But when I reference the Graphics2D object inside a orphan ...
0
votes
1answer
33 views
Ending blocked GUI threads
I am writing a platform game in java. I am making it so that when an exception occurs in the game it will show the user an error report. However, it is causing problems when an error occurs in a gui ...
1
vote
1answer
37 views
Why does my JFrame not update
I have this piece of code of a JFrame that will show the user the progress during the importing time of images:
public class LoadFrame implements Runnable {
JProgressBar progressbar;
JPanel ...
3
votes
1answer
62 views
How to put two different tasks in Threads
I have following code. in this code i have an image which moves from left to right and a button which has an event. but i want to put these both tasks in Threads. so that it can work properly. the ...
3
votes
2answers
86 views
Do something at variable change in Java
I want to do the following: As soon as a specific Variable (roomName) changes its Value, the Title of a JFrame should be changed to the new Value of roomName.
My only problem is, that the JFrame is ...
1
vote
1answer
24 views
Suspending Threads in applet
I need to write a JApplet stop method that suspends the second thread by sending a suspend() message to the 2nd thread when the applet is minimized. I then have to resume the thread when the applet is ...
0
votes
1answer
44 views
How do I pause a JFrame while another is running [duplicate]
I'm making a Server with a database inside, but while I'm loading the main JFrame and while I'm connecting to the database reading username & password from a .properties file I chosed to let the ...
1
vote
2answers
38 views
Using Thread with paint java
I'm developing a checkers game in Java, and I stumbled on a problem.
What I'm trying to create is that when a checkerpiece is pressed, the available 2 spots in front of it should turn into grey for 2 ...
0
votes
1answer
43 views
Synchronizing on a passed object, JFrame is freezing
I created JFrame which contains and InternalFrame which draws figures which are moving(each figure is another Thread) I wanted to pauseButtonmake it pause, so I wanted to synchronize them on the ...
1
vote
1answer
38 views
Java Swing Thread Library [closed]
I am currently looking for a Thread Management Library for Swing(like Foxtrot). As Foxtrot is not supported in Java 7, any suggestions on any other library that are supported in Java 7 ?
1
vote
3answers
63 views
Trouble with SwingUtilities.invokeLater() updating GUI
I have been trying this all day in different variations with little success. Could someone please help explain what I am doing wrong? I am just a beginner with regards to threads.
private JTextArea ...
0
votes
2answers
49 views
prevent GUI from freezing and have button to cancel operation/kill thread
Here is what I am trying to do:
I have a JFrame containing a JTextArea displaying updates on an on going connection. The user is supposed to be able to press the JButton to the right of it if they ...
0
votes
2answers
83 views
MultiThreading in java, I want both UI and code to execute in parallel
I have a JFrame with progress bar and my code which should run it in background showing the progress in progress bar.
I implemented runnable in my Progressbar class and started the thread. But the ...
-1
votes
1answer
60 views
Changing visible JPanels in a JFrame from another class
I have a class named Window that extends JFrame and sets up the basic layout. To that JFrame I want to add different JPanels and a seperate class named Tracking is deciding which JPanel is being ...
1
vote
3answers
69 views
How to stop the execution with a stop Button?
I am creating a program that is sending data from logfiles to a database. The programm should start when I hit a run Button, and stop when I hit a stop button. Until now, I was able to make it run ...
3
votes
2answers
98 views
Why is starting a thread blocked by another thread?
I encountered a strange problem while writing a prototype for an architecture.
I tried to create two threads that dispatch the same commands independently. The first thread was to use a Scanner and ...
1
vote
1answer
53 views
Weird thing with GUI and Threads in java
Given the following code:
public static void main(String[] args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
ClientGUI gui = new ...
-3
votes
1answer
71 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
2answers
49 views
How to handle a variable being used by 2 threads?
One thread keeps reading bytes received from a BufferedReader. The data comes from a SerialPort.
On the main thread, there is a JMenuItem when it's clicked the serial port is closed and the ...
1
vote
1answer
65 views
Multithreading program not working
I am trying to make this work. I create a window, with one text field and button, then I run the run() method which should refresh text in textfield, and when I click on button it should iterate ...
2
votes
2answers
90 views
how can you set a Timer for 1 minute in a java 2d shooting game?
I need the exact code for implementing this into my program. I just want to be able to play the game for one minute, then print to Game over after the minute. I would also appreciate if someone could ...
2
votes
1answer
120 views
Displaying rotating fan on applet
As part of my programming assignment, I have to display a rotating fan in an applet.
Here is my code (class to display the fan):
import javax.swing.*;
import java.awt.*;
public class Fan extends ...
0
votes
1answer
61 views
SwingWorker threads in Java
I'm working with swing at the minute and I've run into a bit of a problem,
I realize that it's not possible to execute a SwingWorker thread more than once
from ...
2
votes
1answer
56 views
Keep focus on a JDialog using SwingUtilities.invokeLater?
I want to display a JDialog so I use this:
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() { new DialogBox().setVisible(true); }
});
It works fine to display it but ...
0
votes
2answers
26 views
JAVA SocketServer with frame
I'm trying to make Java socket Server, which has frame, where messages are displayed.
But when I run the server from frame constructor, the frame don't become visible.
There is part of my code:
...
0
votes
1answer
58 views
Fish Eye effect on a JLabel
I am trying to implement a Fish Eye Image Menu in a JavaBean. As a start, I created a JLabel and put this code on the mouseEntered event. But when I run this, the output is shaky and doesn't re-size ...
1
vote
1answer
47 views
Socket and SwingWorker doesn't work after closing the connection
I'm running a TCP/IP Socket, that sends a SOAP message then gets a response then read it.
The problem is with that scenario: At first everything is fine, I send a message and I get the response ...
0
votes
0answers
74 views
Progress bar implementation in the Selenium automation
I am creating an automation utility using selenium using java to read data from excel and populate in a text box on a webpage. It is working well but my only question here is I need to show up this ...
2
votes
2answers
42 views
Stuck with Thread and updateGraphics
Im trying to make a sortingalgorithm by drawlines, so it looks like a diagram. The problem here is that I can't see the progress as a moving diagram, when the array is sorting. When I type in the time ...
0
votes
0answers
61 views
Update JTextArea automatically with array content
I have a JTextArea and want to update this content.
I have a main JFrame in which I implemented a simple status bar and if you click on this there is another JFrame which contains a JTextArea within ...
0
votes
1answer
110 views
Xuggler: Capture video frames in a separate thread
I’m working with Xuggler and trying to create a program that uses frames that are captured from video.
I found this code: Xuggler: Deocde And Capture Frames
I managed to get it working and saving ...
2
votes
3answers
89 views
MultiThreading locking up Java Swing GUI
I'm working on a project for a multiple user paint program and I have run into a problem with my GUI locking up.
I have most of the program done except for this error, it is a rather large program so ...
0
votes
1answer
61 views
Java Swing processing status
I am trying to implement a swing frame. In this, I want to display a processing status in a textPanel using a different thread while performing the needed task. I tried the following code. Of course ...
0
votes
1answer
70 views
create a thread that will write each character typed using keyboard
I am trying to create a thread that will create a text file and will write each and every character typed on computer using key listener but i am not getting how do i append the created file with next ...
1
vote
2answers
46 views
Initiating GUI as thread
I have a GUI class that works fine, however I have a button in that GUI class that is the supposed to open a new GUI from another class..
private void ...
0
votes
1answer
123 views
How to implement splash screen Java [duplicate]
i get this source code for creating splash screen and thread management in Java. But i don't know how to implement it.
public class SplashWindow extends JWindow {
public SplashWindow(String ...
0
votes
2answers
76 views
Progress bar updater using up CPU
I want to keep my user informed of the progress of an I/O operation. At the moment I've got an inner class that I kick off before I start my I/O and stop after it's done. It looks like this:
class ...
0
votes
2answers
133 views
SwingWorker publish()/process() acts like done()
Implementation details: I'm working on a school project in which I have to simulate some queues. At random intervals, clients should be generated, the client selects one queue(i can have multiple ...
1
vote
2answers
106 views
How to update the JTextField when the variable value is changed?
I have two Java(.java) files. One has a JButton and JTextField and the other has a Thread. In first Java file, I have added an ActionListener to the JButton so that, when the button is pressed, a ...
1
vote
1answer
50 views
Java, How to properly start an application that is a JFrame and use a startable and pauseable thread within?
I have decided to start version 3 of my java application and wanted to know if I am starting the application the proper way. I have asked before and gotten many different answers.
I just started a ...
0
votes
3answers
95 views
Pause and wait for button to be clicked, then continue
I am trying to build a simple tictactoe network game. I need the program to wait until a player makes a move and then continue. In my whileConnected() function at the bottom of my code, I have a ...
1
vote
2answers
101 views
Idiomatic way to refresh pixels of a BufferedImage in Swing
I've got a Swing UI where one part consist of a BufferedImage on which I need to regularly modify pixels.
It seems common to create a JLabel and to call the setIcon method on that JLabel by passing ...
0
votes
1answer
78 views
GUI freeze after click on button
I'm trying to create a client/server application. The problem is the confirm button on client side works for the first time input but if I hit the same button for the another input the client GUI will ...
0
votes
2answers
57 views
Thread declaration [closed]
I have the following code:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Try extends JFrame implements ActionListener{
JButton n1 = new JButton("1");
JButton n2 = ...

