为什么这个Java程序会挂起(异步html下载器)?

时间:2015-02-28 08:33:19

标签: java multithreading asynchronous

你能告诉我为什么这个Java程序会挂起吗? 这是一个使用ExecutorCompletionService异步下载HTML的简单程序。我尝试使用executor.shutdown()completionService.shutdown(),但都提供了no such method。我认为问题在于executorcompletionService,但无法弄清楚如何阻止它们不使用其关闭方法。

import java.io.BufferedReader;
import java.io.InputStreamReader;

import java.net.URL;
import java.util.concurrent.*;

class Main {

    public static void main(String[] args) throws Exception {

        Executor executor = Executors.newFixedThreadPool(2);
        CompletionService<String> completionService = new ExecutorCompletionService<>(executor);
        completionService.submit(new GetPageTask(new URL("http://xn--80adxoelo.xn--p1ai/")));//slow web site
        completionService.submit(new GetPageTask(new URL("http://example.com")));

        Future<String> future = completionService.take();
        System.out.println(future.get());

        Future<String> future2 = completionService.take();
        System.out.println(future2.get());


    }
}

final class GetPageTask implements Callable<String> {
    private final URL url;

    GetPageTask(URL url) {
        this.url = url;
    }

    private String getPage() throws Exception {
        final BufferedReader reader = new BufferedReader(new InputStreamReader(this.url.openStream()));
        String str = "";
        String line;
        while ((line = reader.readLine()) != null) {
            str += line + "\n";
        }
        reader.close();
        return str;
    }

    @Override
    public String call() throws Exception {
        return getPage();
    }
}

1 个答案:

答案 0 :(得分:0)

Executors.newFixedThreadPool()的javadoc表示它返回ExecutorService的实例。 ExecutorService的javadoc显示它有shutdown()方法。

您无法访问它,因为您选择将变量声明为Executor而不是ExecutorService

就像你做的那样

Object o = new Integer(34);

您无法在o上调用任何整数方法。而如果你这样做

Integer o = new Integer(34);

然后你可以在o。

上使用Integer方法

我不想变得粗鲁,但在考虑多线程编程之前,你应该掌握这些非常基本的东西,这非常非常复杂。