JProgressBar is a Java Swing component that visually displays the progress of some task.

learn more… | top users | synonyms

12
votes
3answers
5k views

Can a progress bar be used in a class outside main?

Right now, my main just calls a gui with 10 rows. Based on how many of those rows have text, 1 of 9 classes is called (two rows must have text). The called class performs calculations that I'd like ...
7
votes
2answers
1k views

Java: JProgressBar (or equivalent) in a JTabbedPane tab title

If I really wanted to do something like that, can I put a JProgressBar (or it's equivalent) in a JTabbedPane tab? (I mean, not in the tab itself, How would I do something like that? EDIT I really ...
6
votes
2answers
5k views

Nice looking progress bar in java

I'm wondering if any of you know how to display a nice looking progress bar in Java, mostly using Swing, although I don't mind using third-party libraries. I've been looking at JProgressBar tutorials ...
6
votes
4answers
2k views

How to monitor progress (JProgressBar) with FileChannels transferFrom() method?

I need a little help with the JProgressBar component. My program copies files from one place to another using java.nio FileChannels. The actual copy method is transferFrom(). I've got two questions ...
5
votes
2answers
2k views

Pretty alternative to JProgressBar?

I'd like a nice progress bar for long running processes. Are there any pretty alternatives to JProgressBar out there, specifically for indeterminate processes? I'm thinking of Web-2.0-looking twirls, ...
5
votes
2answers
115 views

JProgressBar: low values will not be displayed

I tried out the function of the JProgressBar in Java. But there is a problem I couldn't solve: When I set the minimum to zero, the maximum value to 100 and the current value to 6 then nothing will be ...
5
votes
4answers
3k views

Swing Splash screen with progress bar

This is my splash screen code, public class SplashScreen extends JWindow { private static final long serialVersionUID = 1L; private BorderLayout borderLayout = new BorderLayout(); private JLabel ...
5
votes
2answers
664 views

JProgressBar Changing Bar Color dynamically

I am using JProgressBar component along with the Nimbus UI Defaults. The problem is that When I want to manually change each progressbar's Bar color, I use BasicProgressBarUI by setting ...
5
votes
2answers
3k views

Change colors for JProgressBar with Nimbus?

does anyone know how to change the colors for JProgressBar when you use Nimbus LookAndFeel?
4
votes
2answers
652 views

adding progress bar to each table cell for file progress - Java

The application encrypts each file that is put into the table when you click encrypt and I would like to show the progress of the files as they are being encrypted. The "Status" column will then ...
4
votes
1answer
2k views

Java Swing progress bar for download process

I am using Java function to download file from internet. public void getLatestRelease() { try { // Function called long startTime = System.currentTimeMillis(); // ...
4
votes
1answer
1k views

Can I make ProgressMonitor dialog modal?

is there a way to make the dialog from ProgressMonitor modal? EDIT: The ProgressMonitor class in JAVA API will bring a dialog which is on the top but not Modal. User still has access to the ...
4
votes
1answer
449 views

Custom Painter on JProgressBar

I'm attempting to change the colour of Progress Bars in my current Swing L&F (I'm using Nimbus at the moment) by using a custom Painter object, but when created these Progress Bars sometimes stick ...
3
votes
4answers
787 views

JButton stays in pressed state

In my Java GUI app I have a JButton and when clicked it calls a function to connect to a database, then calls a function to clear a table in the DB, then calls a function that reads text from one file ...
3
votes
3answers
409 views

Need to have JProgress bar to measure progress when copying directories and files

I have the below code to copy directories and files but not sure where to measure the progress. Can someone help as to where can I measure how much has been copied and show it in the JProgress bar ...
3
votes
3answers
340 views

JTable wait indicator

I have java applet with JTable. Due to lots of data and poor network bandwidth it takes lots of time to perform any operation like load the table or change it. I'm thinking about adding sort of ...
3
votes
2answers
4k views

Setting the colors of a JProgressBar text

I have these progress bars: I'm trying to set the color of the TEXT of the progress bars, without changing the background color or the color of the progress bar itself. As far as I can tell, ...
3
votes
4answers
997 views

Java GUI JProgressBar not painting

I have a GUI problem that I would like to get sorted out, but I am baffled as to what's happening and hope one of you can explain it. The code base is way too large to upload however I will explain ...
3
votes
2answers
105 views

JProgressBar too fast

I am trying to add a progress bar. everything works and i don't get any error. But the progress bar goes from 0% to 100% without even going through the values between it (I mean it's too fast, and the ...
3
votes
3answers
609 views

JProgressBar setValue is not working, tried with SwingUtilities as well

I have implemented a JProgressBar in a JTable. I used renderer for the ProgressBar NOT EDITOR. Now I tried to implement a ProgressBar set value but due to EDT its not working so I used SwingUtilties ...
3
votes
2answers
317 views

Visible JProgressBar while initializing main GUI

I'm building a fairly complicated GUI for a project I'm working on. Importantly, it contains (among other things) a JTabbedPane with 12+ panes of complex GUI components. What I'm trying to do is ...
3
votes
2answers
578 views

JProgressBar doesn't update , can't find a clue

nice job , now i just wanna know why if i add into while loop the instruction System.out.println below the progress is shown on both , cmd and Pgbar in the Gui ?? : while(progress < 99){ ...
3
votes
1answer
327 views

How do you create an accurate progress bar for a task with an unknown length?

If I read a file until it hits a null line and want to create a somewhat accurate JProgressBar for when the reading will be finished, how would I do this? The reason I ask is because some files are ...
3
votes
3answers
369 views

How to show a JProgressBar when downloading a file from an FTP server

I am using apache commons-net for downloading a file from an FTP server. That much is working fine. The part I am having a problem with is showing the download progress using a JProgressBar. The ...
3
votes
1answer
577 views

Java Swingworker: Not as encapsulated class

I'm having problems passing information, updating progress and indicating "done" with a SwingWorker class that is not an encapsulated class. I have a simple class that processes files and ...
2
votes
3answers
1k views

JTabbedPane: show task progress in a tab

I have a simple Swing Java application that performs searches, and the results are shown in a new tab. While the search is running, I want to show a progress icon or animation in the title of the tab. ...
2
votes
3answers
2k views

My JProgressBar is not Updating Until it is 100%

Ok, I have the following code. public class MyProgressBar extends JPanel implements MyData, Serializable { /** * */ public static final int MAX = 10000; public ...
2
votes
3answers
158 views

JProgressBar wont update

I'm trying to add a JProgressBar to my program, but it wont update! The value only changes once it reasons 100%. Here's my method. public void downloadImages(List<String> images) { if ...
2
votes
2answers
264 views

Update JProgressBar Without Knowing Progress

I want to use a JProgressBar but I don't have any measurement of progress for how long the task will take to complete. The idea is to have a progress bar displaying the status of a shutdown process ...
2
votes
2answers
179 views

Why “javax.swing.JProgressBar” displays new values on top of old values when I update from another class?

Problem: ClassA static JProgressBar progressBar; ClassB ClassA.progressBar.setValue(0); ... ClassA.progressBar.setValue(10); ... ClassA.progressBar.setValue(20); Progress ...
2
votes
2answers
459 views

Java ProgressBar with HTTP Upload don't update

I want my jProgressBar to update its value during HTTP File Upload. I'm new to Java and I'm not sure I'm doing the right things, here's my code: private static final String Boundary = ...
2
votes
2answers
2k views

Java Task Progress Bars in Swing

I need a very simple (skeletal) tutorial on progress bars for developing a GUI in Java. The progress bar can be "indeterminate" and ideally have an updateable text label. Here is some skeletal code ...
2
votes
4answers
838 views

Update progressbar from worker thread

I'm building a java program that downloads N elements from a server. I'd like to have a working progress bar, that shows "already downloaded elements"/N percentage. Right now, I update progressbar ...
2
votes
5answers
82 views

CellRenderer Item repaint

I created my own CellRenderer which include some several strings and a JProgressBar in a JList Item ... But the JProgressBar and so the whole JList Item will painted one time and I'm looking for a way ...
2
votes
2answers
706 views

Running a JFrame with a JProgressBar

public void myMethod { MyProgessBarFrame progFrame = new MyProgressBarFrame(); // this is a JFrame progFrame.setVisible(true); // show my JFrame loading // do some processing here while the ...
2
votes
2answers
255 views

Create Modal JDialog while things are processing

how do you create a Modal JDialog saying "loading" while a task is processing that shows after more than 3 seconds has passed?
2
votes
6answers
2k views

Update JProgressBar

I can't update my progressbar... this is my code Thread t=new Thread(new Runnable(){ public void run(){ int i=1; jProgBar.setMinimum(0); ...
2
votes
4answers
1k views

JProgressbar: how to change colour based on progress?

Is it possible to be able to change the bar colour depending on the value of the progress? I tried the following but it doesn't work: percentUsed = (int)(((float) used / (float) max) * ...
2
votes
2answers
408 views

jTextfield and progressbar not working

I have a main class(which is basically a netbeans form;drag and drop) from where my application starts and another class(call it class 2) where my functions resides.I first call a function in class2 ...
2
votes
1answer
77 views

Change shape of JProgressBar [duplicate]

I am new to Java but needs to know that if it is possible for a developer so that he/she can change the shape of the JProgressBar. I mean suppose in my case I want to change the shape so that it looks ...
2
votes
3answers
107 views

JFrame freezes during while loop [duplicate]

I am working on a Java program, which reads text files does some probability calculations. Reading files and all related calculations are done in a while loop. I had created a GUI using JFrame, ...
2
votes
2answers
244 views

java - Progress Bar - Is it possible to use setProgess() of Progress Bar outside the doInBackground() method?

If I had a method inside the doInBackground() that belongs to other class is it possible to set setProgess() based on changes that happen in that other method of an outside class?
2
votes
3answers
342 views

JProgressBar while data loading in swing

I have a server call from the UI. It has response time is little high. So I was thinking to display a progress bar during data loading from the server. I have tried the following code using this ...
2
votes
1answer
1k views

Basic Indeterminate JProgress Bar Usage

I simply want to have an indeterminate JProgressBar animate in the bottom left corner of my frame when a long download is being done. I've looked through many tutorials, none of which are clear to ...
2
votes
1answer
379 views

Simulating a long-running operation

How could I simulate a long-running database operation? My requirement is to display a dialog box with a JProgressBar until the operation is completed.
2
votes
1answer
112 views

Java JProgressBar using Image

I am making a game in Java, and I am using a JProgressBar for a health bar. I want to use an image (instead of colours) for the JProgressBar, but I have not been able to do it. I have tried using ...
2
votes
1answer
369 views

Getting my jProgressBar to run on a timer from 1 to 100

So Firstly i will say i'm really not very good at java but i've been trying! So i was looking through this thread How to make Timer countdown along with progress bar? And i would like to add this ...
2
votes
2answers
2k views

Nimbus L&F - Change Background color of Progress Bar

i'm developing a little GUI application with Java using Netbeans Editor. I've put in a JFrame a simple Progress Bar. I'm developing the project with JDK7 I want to change the background Color from ...
2
votes
3answers
294 views

JProgressBar from InputStream

There are many posts on JProgressBar, but I can not find a solution for the following problem. How do I update JProgressBar measuring bytes received from InputStream? For example, I have the ...
2
votes
4answers
9k views

How do I use JProgressBar to display file copy progress?

I am working on a project that transfers files over a network and I want to incorporate a JProgressBar to show the progress during file transfer but I need help on that.

1 2 3 4