对不起,我是这个Java Swing接口的新手
但我找到了一个简单的教程,我可以继续学习。此处链接1。
然后我创建了一个简单的JFrame和一个按钮。一旦按下按钮,它将执行以下代码:
int res = -1;
List<NameValuePair> urlParameters = new ArrayList<NameValuePair>();
urlParameters.add(new BasicNameValuePair("id", jTextField1.getText()));
urlParameters.add(new BasicNameValuePair("pass", jTextField2.getText()));
Submitter m = new Submitter();
m.setData(urlParameters);
m.setURL(url1);
m.execute(); System.out.println(m.getResult);
而提交者分类实际上是这样的:
public class Submitter extends SwingWorker<String, Void> {
public int getResult(){
return res;
}
String line = "";
String urlTarget;
int res = -1;
StringBuffer result = new StringBuffer();
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
public String getLastResult(){
return result.toString();
}
public void setURL(String yourURL){
urlTarget = yourURL;
}
public void setData(List<NameValuePair> listHere){
nameValuePairs.addAll(listHere);
}
@Override
protected String doInBackground() throws Exception {
HttpClient client = HttpClientBuilder.create().build();
HttpPost post = new HttpPost(urlTarget);
try {
post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
post.setHeader("User-Agent", "Firefox");
HttpResponse response = client.execute(post);
BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
while ((line = rd.readLine()) != null) {
result.append(line);
}
} catch (IOException e) {
e.printStackTrace();
}
return result.toString();
}
@Override
protected void done() {
try {
// store the output here
String s = this.get();
res = Integer.parseInt(s);
} catch (InterruptedException ex) {
System.err.println("line 119");
} catch (ExecutionException ex) {
System.err.println("line 121" + ex.getMessage());
}
}
}
但有趣的是,这个SwingWorker本来打算在按下按钮后被调用,但它从来没有处理过任何事情。为什么根本没有输出?我以为我已经把System.out.println()->在那边CMIIW。
我认为您对教程中给出的示例的理解有点过于字面化了。在现实生活中,您的SwingWorker
将在返回结果之前执行一项定义良好的工作。我认为本教程只是试图证明,如果检查isCancelled()
标志,SwingWorker
可以被中断。
作为练习,您可以尝试调整示例以迭代计算Pi,使其精度不断提高。当你最后点击"停止"时,它可能会取消工作者并返回你的当前值。在您取消之前,循环将继续执行并完善您的答案。
我也是一个java新手。我发现了一本很棒的java书,我免费下载了它。在谷歌上搜索"Java Programming Joyce Farrell 6th Edition pdf"。我学java才3个月,那本书帮了我很多忙。