How to add text on jprogressbar?

Viewed 27721

I am using a jprogressbar to indicate the availability status. i want to display a text of 40%[assumption] inside the progressbar. how to do it? the text was changed according to the availability value

8 Answers

This shows the progress percentage inside the progress bar

progressBar.setStringPainted(true);
Related