两种方式:一种继承Thread类实现;一种通过实现Callable接口。

第一种方法:

因为实现Thread类的run方法自身是没有返回值的,所以不能直接获得线程的执行结果,但是可以通过在run方法里把最后的结果传递给实例变量,然后通过getXX方法获取该实例变量的值。继承实现的代码:

class RunThread extends Thread{
private String runLog;
private BufferedReader br;
{
runLog = "";
}
public RunThread(BufferedReader br){
this.br = br;
}
public void run() {
try {
String output = "";
while ((output = br.readLine()) != null) {
this.runLog += output + "\n";
}
} catch (IOException e) {
e.printStackTrace();
}
}
public String getRunLog(){
return this.runLog;
}
}

第二种方法:

继承Callable接口后需要实现call方法,而call方法默认是可以有返回值的,所以可以直接返回想返回的内容。接口的实现代码:

class CallThread implements Callable<String>{
private String runLog;
private BufferedReader br;
{
runLog = "";
}
public CallThread(BufferedReader br){
this.br = br;
}
@Override
public String call() throws Exception {
try {
String output = "";
while ((output = br.readLine()) != null) {
runLog += output + "\n";
}
} catch (IOException e) {
return runLog;
}
return runLog;
}
}

下面就来调用了。

第一种方式的调用代码:

        RunThread th1 = new RunThread(standout);
th1.start();
RunThread th2 = new RunThread(standerr);
th2.start();
th2.join(); //保障前面2个线程在主进程之前结束,否则获取的结果可能为空或不完整
runLog += th1.getRunLog() + "\n";
runLog += th2.getRunLog() + "\n";

第二种方式的调用代码:

            ExecutorService exs = Executors.newCachedThreadPool();
ArrayList<Future<String>> al = new ArrayList<Future<String>>();
al.add(exs.submit(new CallThread(standout)));
al.add(exs.submit(new CallThread(standerr)));
for(Future<String> fs:al){
try {
runLog += fs.get() + "\n";
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
}

转载:http://blog.csdn.net/five3/article/details/11592889

最新文章

  1. 【Android】Android属性allowBackup安全风险
  2. ActionScript 3.0入门:Hello World、文件读写、数据存储(SharedObject)、与JS互调
  3. PAT 1013. 数素数 (20)
  4. 一行代码解决各种IE兼容问题IE8,IE9,IE10
  5. Microsoft Visual C++ 2010(86) Redistributable不能安装完美解决
  6. 微信lbs---返回两个经纬度坐标点的距离
  7. Codevs 1380 没有上司的舞会
  8. web配置详解
  9. 通过jQuery或ScriptManager以Ajax方式访问服务
  10. c++ 03
  11. .net mvc ajax list post
  12. Jmeter性能测试
  13. jquery事件绑定
  14. 【JAVAEE学习笔记】hibernate01:简介、搭建、配置文件详解、API详解和CRM练习:保存客户
  15. Mysql系列-数据库
  16. vue项目在移动端(手机)调试
  17. 网页设计(CSS&amp;JS)
  18. node 模块化思想中index.js的重要性
  19. ionic在ios侧滑页面空白 禁用视图滑动后退
  20. Linux安装rz/sz,htop插件

热门文章

  1. 【Java GUI】Java面板基础:JPanel
  2. Win10使用中的一些问题
  3. [原创].NET 业务框架开发实战之九 Mapping属性原理和验证规则的实现策略
  4. org.eclipse.birt.report.data.oda.jdbc.JDBCException: Missing properties in Connection.open(Propertie
  5. mysql_install_db出错,Unable to lock /usr/local/mysql/var/ibdata1, error: 11
  6. 使用AppCompat_v7 21.0.0d的几个兼容问题
  7. MVC5 Entity Framework学习之实现继承
  8. 转让malloc()该功能后,发生了什么事内核?附malloc()和free()实现源
  9. Zero Downtime Upgrade of Oracle 10g to Oracle 11g Using GoldenGate — 3
  10. C#+Mapxtreme 实现一些GIS系统基本的功能