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

learn more… | top users | synonyms

1
vote
2answers
43 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) { ...
2
votes
2answers
35 views

JProgressBar Capable of hiding the 'bar' and not the 'fluid'

I understand that 'fluid' isn't the best description, but that's how I imagine the green that lays inside a progress bar. I was just wondering if it was possible to just see the green 'fluid' from ...
0
votes
0answers
13 views

JProgress Bar not updating

Hello I want to update my JProgress Bar with the help of a Swing Worker class. I searched the other questions on this topic in this forum and took some code of a solution but in my case i does not ...
0
votes
1answer
38 views

Visibly Moving JProgressBar

I have a JProgressBar and want to be able to see it dynamically updated. The progress bar should be able to visibly move from one position to another, not just change without the bar visibly changing ...
0
votes
1answer
33 views

how to make Indeterminate progressbar look nicely?

I'm using nimbus lookAndFill UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); and my indeterminate JProgressBar looks like that: ...
1
vote
1answer
38 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 ...
0
votes
2answers
59 views

FileInputStream / FileOutputStream blocking?

I have the following code which successfully copies a file. However, there are two problems with it: The System.out.println() immediately after the progressBar.setValue() does not print intervals ...
-1
votes
1answer
46 views

link application with a progress bar

private void exportButtonActionPerformed(java.awt.event.ActionEvent evt) { if ("PDF(.pdf)".equals(jComboBox1.getSelectedItem())) { ...
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 ...
2
votes
1answer
76 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
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 ...
0
votes
0answers
33 views

DialogFragment, Loaders and Progressbar

I have a problem with showing dialog (alert dialog or custom dialog) based on DialogFragment (Sherlock). I tried many different solutions and work around but still I have no successful results. My ...
2
votes
1answer
60 views

Color in JProgressBar

I just wanted to use the Windows L&F in a JFrame. Now while using a progress bar, the default color is green, similar to the one used in other windows functions like copying of files, etc. ...
0
votes
0answers
11 views

How to show an Informative Panel during a certain execution in java

I am writing a program in which large number of color of pixels are encoded in integer or Hex values. In this case it takes a long time while it is done through graphics mode I mean in an interface or ...
2
votes
5answers
81 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 ...
0
votes
1answer
81 views

JProgressBar indeterminate thread

I have a problem while creating a JProgressBar which is set to indeterminate. The following code is my implementation of the JProgressBar and is called/constructed from another class: public class ...
0
votes
0answers
39 views

One handler for two actions

I have a button and a progress bar. Now my question is that when the button is pressed and ActionPerformed method is called which has the code for the action to be performed when the button is ...
0
votes
1answer
81 views

how to change setIndeterminate jProgressbar in other frame

i have a two frame, frameA and frameB, in frameA i add one button with name buttonA to show frameB and progressbar (setIndeterminate(false)), in frameB i add one button with name buttonB , i want to ...
2
votes
3answers
104 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, ...
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
0answers
37 views

How can I put progress bar in my custom model with custom cell renderer?

I have made a JTable, and I am putting a JProgressBar in it. I am using this class which implements a table cell renderer: public class TableRender implements TableCellRenderer { @Override ...
0
votes
0answers
58 views

I having probleme with my JProgressBar

How and Where i put function of JProgressBar in my program and how i update? while( (nbLecture = sourceFile.read(buffer)) != -1 ) { destinationFile.write(buffer, 0, nbLecture); ...
0
votes
1answer
50 views

Displaying the progress of a thread in percent number with a JProgressBar

I have a button that search some files, so I'm trying to display the progress of this task in a progress bar with percent numbers. I'm using another thread to execute this task, but it takes long time ...
1
vote
2answers
95 views

get immediately systemoutput while runtime (updating ProgressBar) Java

I'm running a command via runtime.exec which take some time. I want to update my ProgressBar while that. I already get my desired systemoutput, the problem is: I get it all at once when the process is ...
1
vote
2answers
126 views

how to make the progression of a progressbar swing?

I would like to creat an apllication that install files in devices. but i have a problem to implement the progress, the code that i use in my fram to call the class to install is given below, ...
0
votes
2answers
104 views

Thread, Wait, Notify, Sleep in Java

I am developing/developed a desktop application, where the button has actionlistener and to do lot of background task, I didnt use the thread, wait, notify or sleep before. I am just confused which ...
0
votes
3answers
394 views

Java uploading percentage progressbar thread

I'm developing a java application where I save big files using bufferedInputStream. I have put a progressbar inside a JDialog which indicates the percentage of uploaded files and which increases every ...
-2
votes
1answer
123 views

blocking thread when progressbar is running

Hello guys i want to make ProgressBar who will loading till the song starts ... i have this code but the ProgressBar is starting when the song starts and also its maked to finish it about 5 sec. so ...
0
votes
2answers
1k views

Progress Bar Java

I am using JProgressBar to show progress. But, How to show the progressBar as loading from 0 to 100? I got the code from internet and its working except the progressBar is not loading. code ...
2
votes
1answer
110 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 ...
1
vote
2answers
57 views

Display Result only after JProgress Bar Completes 100% in Java

I have a Jbutton "Highlight" that when clicked calls the Jprogress Bar. The progresss bar works fine till 100%. How can I display my Result only after Progress Bar has reached 100%. Here is part of ...
-1
votes
2answers
96 views

Java BufferedInputStream Progress Bar

I'm having a slight issue getting a JProgressBar to show the status of an HTTP download. The progress bar is working, however it fills up too quickly and eventually overshoots the max value by quite ...
0
votes
0answers
109 views

java progress bar animation

So I googled and searched for this, but I could find anything on it: I called this method in my code try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch ...
0
votes
2answers
61 views

How to see communicate between 2 runnable with progression

I have 2 classes .java The main : public class Controller extends javax.swing.JFrame { public static void updateProgressBar(int i) { jProgressBar1.setValue(i); ...
2
votes
1answer
131 views

JProgressBar not animating ONLY on Mac with Java 1.7

Here's some code that creates and displays a JProgressBar on the EDT. On Apple's Java 6, the progress bar animates. On Oracle's Java 7, it doesn't: import javax.swing.*; public class ScratchSpace { ...
5
votes
2answers
114 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 ...
0
votes
0answers
129 views

How to Change JProgressbar Bar color within table cell Using Nimbus Look And Feel

My problem is that I have table which one of the columns have ProgressBars within table cells, I would like dynamically change ProgressBar's Bar color dynamically based on row and column number, ...
5
votes
2answers
612 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 ...
1
vote
1answer
316 views

Progress bar freezing while downloading file in java [duplicate]

Possible Duplicate: JProgressBar wont update So I am trying to show the download progress of a file being downloaded in Java. I can output the current percentage as a String to the console, ...
2
votes
3answers
156 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 ...
1
vote
2answers
103 views

JProgressBar doesn't update when JDialog's modal

I understand there's no way to make a JProgressMonitor modal and that one would rather use a JDialog with a JProgressBar. Now, I got that working - but only as long as I'm not trying to make the ...
-2
votes
2answers
131 views

Progress bar not working

Good Evening, i have a problem in running a progress bar, please check my code and tell me where is the problem: /** ** @author Islam */ public class Register extends javax.swing.JFrame implements ...
2
votes
2answers
98 views

Vertical progress bar has strange background which is not changeable

The progress bar is created by the following code bar = new JProgressBar(JProgressBar.VERTICAL); bar.setEnabled(true); bar.setBackground(Color.YELLOW); ...
0
votes
1answer
129 views

How to make a jprogressbar to run in parallel with my algorithm [duplicate]

Possible Duplicate: Java GUI JProgressBar not painting Can a progress bar be used in a class outside main? I am using Netbeans drag and drop to do an application. I will get input from ...
0
votes
2answers
154 views

Download a file while also updating a JProgressBar

I have tried tones of different methods to get this to work but they either don't work with a progress bar or don't work the way I would like it to. I have already created a new window with a ...
1
vote
1answer
98 views

Draw a String onto a ProgressBar, like JProgressBar?

I recently started working with JavaFX, and started making FX versions of my custom Swing components. One of them was a count down timer, in which a JProgressBar was involved. I would draw the current ...
0
votes
2answers
83 views

How to exit an app when ProgressBar reaches 100?

Ok people, I have this sample Java code. Many of you have probably seen it before. Since I'm very new to Java I wondered how do you actually invoke a program to close after the ProgressBar reaches ...
0
votes
1answer
41 views

Update JProgressBar From Different Class

I have built a small java application, it is for updating product price, quantity and special offers etc of products on a mysql database, using a csv file as input that I receive from a closed ...
0
votes
1answer
139 views

JDialog with a JProgressBar [duplicate]

Possible Duplicate: Java GUI JProgressBar not painting I have a GUI that has the GUI Locked while processing an Action Event, so I need a progress bar to show up. I can get the JDialog to ...
1
vote
1answer
144 views

inserting java code from one class to another

So I have an interesting problem. I have an application that I wanted to have progress bars in each cell of the table. To be safe I wrote a stand alone app that does just what I want but now I'm ...

1 2 3 4