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

learn more… | top users | synonyms

2
votes
2answers
638 views

Using JProgressBar with Java Mail ( knowing the progress after transport.send() )

I have this program that sends email.I was wondering if i could use progress bar to make user interface better. What i want is that the progress bar should progress accordingly after the statement ...
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?
0
votes
2answers
390 views

JProgressBar with double value

Hello i would like to know if i can extends a JProgressBar to use double value for min max, instead of int. Thank you.
1
vote
1answer
838 views

Java file a progress bar

I'm new to Java. I want to write a program that makes arcive of file and i want to use progress bar to show progress of zipping There is my code, but it duosen't work shows only 100% when work is ...
2
votes
1answer
61 views

Overlaying several JProgressBars?

I'd like to have a JProgressBar that is actually several JProgressBars layered together. Does such an implementation exist? I'd like to know before I crack out Flithy Rich Clients and try to put one ...
2
votes
1answer
980 views

Java ProgressBar in swing

i have a desktop GUI in swing , i want to show status of user storage used in the GUI, currently i am using JProgressBar, which is not much attractive, It seems like a simple progress bar. Please ...
1
vote
2answers
1k views

Controlling JProgressBar height

I am creating a java swing app which makes use of the JProgressBar control. The control looks ok on Linux and Windows but it is too big for my likings on Mac. I would like to change its height. I am ...
1
vote
3answers
4k views

How to make Timer countdown along with progress bar?

How can I make it so that the progress bar slowly goes down with the time limit? class GamePanel extends JPanel implements MouseListener, ActionListener { private JButton quit; private ...
2
votes
4answers
2k views

Changing Swing progress bar look and feel

I keep trying to chang the UIManager to make these stupid looking green squares go away. how do i change the look and feel of this to the user? Is it system dependent? Someone else who was ...
0
votes
1answer
278 views

set the value of jprogressbar to zero after reached 100%

how to set the value of jprogressbar to zero after reached the 100%? i used the following code but didn't do exactly what i want: private void jButton6ActionPerformed(java.awt.event.ActionEvent evt) ...
1
vote
1answer
367 views

JProgressBar updating values behavior (Threaded)

I cannot seem to understand why when working with certain values the JProgressBar will sort of freeze and stop making calculations. For example the code bellow will only show zero all of the time; ...
1
vote
2answers
595 views

JProgressBar not displaying correctly from ActionEvent

In the below code the JProgressBar displays correctly when the doSomething() is called from within main but not when called as a result of an ActionEvent - the interface seems to freeze. What is the ...
1
vote
2answers
820 views

How to create a task for using progress monitors in java?

I've created a stand alone java application in which i need to copy files from one place to other. But the copying takes times and i want to show the progress of the copying with the help of progress ...
2
votes
4answers
836 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 ...
0
votes
2answers
893 views

jprogressbar visible and working on button click

public NewJDialog(java.awt.Frame parent, boolean modal) { super(parent, modal); initComponents(); jProgressBar1.setVisible(false); } private void ...
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 ...
2
votes
2answers
644 views

Changing JProgressBar

After noticing this link: http://www.newscientist.com/blogs/nstv/2010/12/best-videos-of-2010-progress-bar-illusion.html I wanted to make my jprogressbar look like that. How would I go about doing ...
0
votes
2answers
130 views

Remove some layout elements from JProgressBar

I would like to know if it's possible to remove red areas(on JProgressBar) on the following image. These are blue lines on the top and left side of the progress bar which I would like to remove. I ...
1
vote
2answers
3k views

Swing JProgressBar doesn't repaint as I'd expect it to

Hey all, I have a pretty simple problem someone should be able to help me with. All I want is a small frame with a progress bar that updates, right now it's not updating: final JProgressBar bar = new ...
0
votes
2answers
519 views

java jprogressbar hangs during heavy operation

I'm writing a java program and, before I call a method that makes heavy use of the CPU, I display a frame with a JProgressBar on it. Although I display it before the method is called, the JProgressBar ...
1
vote
1answer
184 views

JProgressBar query

Is it possible to start JProgressBar from inbetween.I know this is wierd but I need to show the update between 20-80% and the progress bar should be invisible between 0-20% and 80-100% and the number ...
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 ...
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, ...
0
votes
2answers
1k views

JProgressbar not showing (without threads)

i have a program that takes some time creating pdf files i would like to show progress to user when i finish making a pdf file i try to call the progressbar to update its status: ProgressDialog ...
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); ...
3
votes
4answers
996 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 ...
0
votes
2answers
446 views

swing: making a JProgressBar with a label superimposed on it?

I would like to use a JProgressBar and augment it to print its current value as well as the graphical bar. I'm guessing the best way to do this is to override paintComponent: @Override protected ...
2
votes
3answers
4k views

Update JProgressBar from new Thread

How can I update the JProgressBar.setValue(int) from another thread? My secondary goal is do it in the least amount of classes possible. Here is the code I have right now: **Part of the main ...
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 ...
0
votes
1answer
1k views

How show my application delay with JProgressBar?

I wrote a simple application and I want show delay of it with JProgressBar Plese help me ; I want show JProgressBar with Joptionpane , with a cancel button and it should be modal this is my source ...
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 ...
1
vote
1answer
1k views

Vertical progress bar in swing?

I need a veritical progress bar in swing to display a temperature in one case and a voltage in another. How can I accomplish this? Can I set the progress bar to a vertical mode? Can I use the ...
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, ...
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