I have progress bar(swing) java code which show the status of Hard disk(i.e. percentage of used space) in form of progress bar.
Java code is as follows: (AutoProgress.java )
import javax.swing.*;
import javax.swing.border.Border;
import java.awt.*;
import java.io.File;
public class AutoProgress extends Throwable {
public static void main(String args[]) {
File[] drives = File.listRoots();
JFrame f = new JFrame("Hard Disk Status");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setLayout(new GridLayout(drives.length, 1));
JProgressBar[] bar;
bar = new JProgressBar[10];
int i;
Border border;
if (drives != null && drives.length > 0) {
for (i = 0; i < drives.length; i++) {
double temp = 0.0;
bar[i] = new JProgressBar();
double freeSpace = drives[i].getFreeSpace();
double totalSpace = drives[i].getTotalSpace();
double usedSpace = (totalSpace - freeSpace);
totalSpace = totalSpace / (1024 * 1024);
usedSpace = usedSpace / (1024 * 1024);
int perUsed = 0;
if (totalSpace > 0) {
temp = ((usedSpace * 100) / totalSpace);
}
perUsed = (int) Math.round(temp);
bar[i].setValue(perUsed);
bar[i].setStringPainted(true);
border = BorderFactory.createTitledBorder(drives[i].toString());
bar[i].setBorder(border);
f.add(bar[i]);
if (perUsed > 80) {
bar[i].setForeground(Color.red);
}
}
}
f.setSize(500, drives.length * 50);
f.setVisible(true);
}
}
I want to integrate (means to show) this progress bar on XHTML code written in JSF .
kindly help me out with this.. Thanku
You can use applet, first try to create the applet and generate jar file, then embedded it inside the xhtml code using :
code: the name of the class.
archive: specifies the location of an archive file (in the example I put jar and xhtml page in same folder).