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 ...
1
vote
2answers
45 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
38 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
1answer
39 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
34 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
40 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
86 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 ...
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
12 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
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 ...
0
votes
1answer
84 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
40 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
82 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
105 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
77 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
38 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
127 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
3answers
408 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
124 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
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 ...
1
vote
2answers
59 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
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
132 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
130 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
633 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
321 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
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 ...
1
vote
2answers
104 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
132 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
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 ...
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 ...
0
votes
0answers
85 views

JProgressBar vertical align text and Windows styling

I have a couple of questions which I can't find the answer to. I've created a JProgressBar and set a custom font: JProgressbar progressBar = new JProgressBar(); progressBar.setFont(new Font(null, ...
4
votes
2answers
648 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 ...
0
votes
1answer
127 views

ProgressBar when program is running

I'm trying to add to my program progress bar ,when it executes.Actualy I want to add something like this: public class TestProgressBar extends javax.swing.JFrame { public TestProgressBar Bar; ...
2
votes
2answers
241 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?

1 2 3 4