如何将“ HttpClient”导入到Eclipse?

如何在Eclipse中导入“

HttpClient”?我刚才从http://hc.apache.org/downloads.cgi下载了HttpClient

。我将其添加到Eclipse新的Java项目中,并希望从网站运行示例副本。

这个示例使用import org.apache.commons.httpclient.*;了可惜的是,它表明Eclipse无法解决此问题。

现在,我想知道将新发布的HttpClient导入我的项目的正确方法。是否有必要在classpath中添加一些jar?它是什么?

这是我运行的整个示例。我猜新发布的“ HTTPClient”更改了其导入jar,这是真的吗?

package http.demo; 

import java.io.IOException;

import org.apache.commons.httpclient.*;

import org.apache.commons.httpclient.methods.*;

public class SimpleHttpClient {

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

HttpClient client = new HttpClient();

client.getHostConfiguration().setHost( "www.imobile.com.cn" , 80, "http" );

method = getPostMethod();

client.executeMethod(method);

System.out.println(method.getStatusLine());

Stringresponse=newString(method.getResponseBodyAsString().getBytes("8859_1"));

System.out.println(response);

method.releaseConnection();

}

private static HttpMethod getGetMethod(){

return new GetMethod("/simcard.php?simcard=1330227");

}

private static HttpMethod getPostMethod(){

PostMethod post = new PostMethod( "/simcard.php" );

NameValuePair simcard = new NameValuePair( "simcard" , "1330227" );

post.setRequestBody( new NameValuePair[] { simcard});

return post;

}

}

回答:

您将jar文件拖到项目中,以便可以在Eclipse中看到它。

要使其对Eclipse具有特殊意义,请右键单击Eclipse中的jar文件,然后选择Build Path-> Add to Build Path。

现在,您的导入应可以正确解决。

以上是 如何将“ HttpClient”导入到Eclipse? 的全部内容, 来源链接: utcz.com/qa/411695.html

回到顶部