1

我正在使用 apache http commons 4。我在 netbeans 的类路径中添加了 httpcore-4.0.1.jar 和 httpclient-4.0.1.jar。我收到错误:
java.lang.NoClassDefFoundError: org/apache/http/impl/client/DefaultHttpClient

我的代码如下。请帮忙。

import org.apache.http.client.HttpClient;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.BasicResponseHandler;
import org.apache.http.impl.client.DefaultHttpClient;

public class HttpClientManager {
    public HttpClient httpclient;
    public HttpClientManager() {
        this.init();
    }

    public void init() {
        try {
            httpclient = new DefaultHttpClient();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public void getCourseList() {
        String url = "http://exnet.in.th/api.php?username=demoinst&ha=2b62560&type=instructor";
        HttpGet httpget = new HttpGet(url);

        ResponseHandler<String> responseHandler = new BasicResponseHandler();
        try {
            String responseBody = httpclient.execute(httpget, responseHandler);
            System.out.println(responseBody);

        } catch (Exception e) {
        }    
    }
}
4

3 回答 3

1

只是要指出NoClassDefFoundErrorNoClassFoundException不是一回事吗?

您可能想查看Demystified 类加载问题系列

祝一切顺利。

于 2010-05-25T10:15:24.130 回答
0

httpclient-4.0.1.jar包含org.apache.http.impl.client.DefaultHttpClient检查您的类路径是否有错别字。

于 2010-05-25T09:35:30.163 回答
0

发生此异常是因为 Felix 没有找到实际的类,因为它不包含导入。谢谢大家回答这个问题。

好的,我通过将 DefaultHttpClient 的路径添加到 felix.properties 来实现它 -</p>

于 2010-07-09T04:40:34.673 回答