好的,我正在创建一个Java程序,用于下载游戏Minecraft
的mod。我有以下类进行所有下载,并且工作正常。但我有一个问题,即在下载mod时进度条没有更新(整个程序在下载时冻结)
经过大量研究,其他人似乎也有同样的问题,可以通过使用线程来解决。
我只需要知道是否可以使用现有代码执行此操作,还是必须完全重写我的这个java类?
package com.anarcist.minemodloader;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import javax.swing.JProgressBar;
public class modsDownloader {
public static Boolean downloadMod(String mod, String saveLoc, JProgressBar progress){
try {
URL url = new URL(mod);
//Set ProgressBar to 0%
progress.setValue((int)0);
//Open the Connection to the file
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
//Get filesize
int filesize = connection.getContentLength();
//Start reading at byte 0
float totalDataRead = 0;
BufferedInputStream in = new BufferedInputStream(connection.getInputStream());
FileOutputStream fos = new FileOutputStream(saveLoc);
BufferedOutputStream bout = new BufferedOutputStream(fos, 1024);
byte[] data = new byte[1024];
int i=0;
while((i = in.read(data, 0, 1024)) >= 0){
totalDataRead = totalDataRead + i;
bout.write(data,0,i);
float Percent=(totalDataRead * 100) / filesize;
progress.setValue((int)Percent);
}
bout.close();
in.close();
}catch(Exception e){
javax.swing.JOptionPane.showConfirmDialog((java.awt.Component)
null,e.getMessage(), "Error",
javax.swing.JOptionPane.DEFAULT_OPTION);
}
return true;
}
}
此外,使用以下代码调用此函数/类:
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
Object selectedObj = modsList.getSelectedValue();
if (selectedObj instanceof modsListItem) {
try {
modsListItem selectedItem = (modsListItem) selectedObj;
System.out.println(selectedItem.getValue());
String fullName = selectedItem.getValue();
String fileParts[] = fullName.split("/");
String fileName = fileParts[fileParts.length - 1];
String saveLoc = config.getModsFolder(true) + "/" + fileName;
modsDownloader.downloadMod(selectedItem.getValue(), saveLoc, jProgressBar1);
} catch (IOException ex) {
Logger.getLogger(MainFrame.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
答案 0 :(得分:1)
这个方法调用你的并在一个单独的线程中传递参数,但是返回true语句在主线程中执行,因此,虽然你的线程没有结束他的工作,但它可能会返回true。
public static Boolean downloadModThread(String mod, String saveLoc, JProgressBar progress){
new Thread(
new Runnable(){
public void run(){
downloadMod(mod, saveLoc, progress);
}
}
).start();
return true;
}
答案 1 :(得分:0)
您可以使用Swing invokeAndWait()或 invokeLater() invokeAndWait method in SwingUtilities概念,例如 FIFO 逻辑执行特定工作并在完成后触发某事
您可以使用 SwingWorker 逻辑执行长时间运行的任务,并定期更新用户界面