gpt4 book ai didi

java - 需要帮助理解 Java 中的线程

转载 作者:行者123 更新时间:2023-11-30 08:06:06 25 4
gpt4 key购买 nike

好的,我正在创建一个 Java 程序,用于下载游戏 Minecraft 的 mod。我有以下类(class)可以完成所有下载并且工作正常。但我有一个问题,下载 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);
}
}
}

最佳答案

这个方法调用是你的,并在单独的线程中传递参数,但 return 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;

}

关于java - 需要帮助理解 Java 中的线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31085849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com