私は以下のコードを持っています。私はそれを働かせることはできません。ダウンロードプロセスでJProgressBarを接続
URLがリダイレクトされていることに言及する必要があります。私はurl = http://www.thissite.com
を意味し、http://www.othersite.com
にリダイレクトします。しかし、私はそれが最初のurl
で動作するようにしたいです。
public void download(String address, String localFileName, JProgressBar progress) {
OutputStream out = null;
URLConnection conn = null;
InputStream in = null;
try {
URL url = new URL(address);
// Open an output stream to the destination file on our local filesystem
out = new BufferedOutputStream(new FileOutputStream("/MusicDownloads/"+localFileName));
conn = url.openConnection();
in = conn.getInputStream();
int length = conn.getContentLength(); //find out how long the file is, any good webserver should provide this info
int current = 0;
progress.setMaximum(length); //we're going to get this many bytes
progress.setValue(0); //we've gotten 0 bytes so far
// Get the data
byte[] buffer = new byte[1024];
int numRead = 0;
while ((numRead = in.read(buffer)) != -1) {
current=0;
out.write(buffer, current, numRead);
current += numRead; //we've progressed a little so update current
progress.setValue(current); //tell progress how far we are
}
// Done! Just clean up and get out
} catch (Exception exception) {
exception.printStackTrace();
} finally {
try {
if (in != null) {
in.close();
}
if (out != null) {
out.close();
}
} catch (IOException ioe) {
// Shouldn't happen, maybe add some logging here if you are not
// fooling around ;)
}
}
}
リダイレクトの問題を解決する方法はわかりませんが、JProgressBarは機能しません。このコードをEDTから呼び出すことを確認していますか? *** EDTのJProgressBarのsetValue(...)メソッド***を呼び出す必要があります。 –
ダウンロードを開始するにはdownload( "http://www.site.com"、 "file.txt"、jProgressBar1)を呼び出しています。プログレスバーは固定されたままです –