gpt4 book ai didi

java - HTTPRequest 类无法识别,似乎没有 apache.jar?

转载 作者:行者123 更新时间:2023-12-01 05:44:16 25 4
gpt4 key购买 nike

我正在尝试编译以下代码(看看我是否可以让网络服务器流式传输到客户端):

           HttpClient httpClient = new HttpClient();

HttpRequest req = new HttpRequest("GET", "http://tools.ietf.org/html/rfc2616.html");

// returns immediately if the complete header (not message!) is received
HttpResponse resp = httpClient.call(req);

if (resp.getStatus() == 200) {
// create the output file
File file = new File("rfc2616.html");
file.createNewFile();
FileChannel fc = new RandomAccessFile(file, "rw").getChannel();

// get a blocking message body channel
ReadableByteChannel inputBodyChannel = resp.getBlockingBody();

// and transfer the data
fc.transferFrom(inputBodyChannel, 0, 900000);
fc.close();
}

但是 eclipse 无法识别 HTTPRequest 类,并且我没有任何支持它的 apache jar,即使我将所有 apache .jar 添加到我的构建路径中?

最佳答案

这就是HttpComponents Client 4.x API 。您可以下载here 。也许您使用的是 3.x 版本,它确实缺少 HttpRequest 类。

关于java - HTTPRequest 类无法识别,似乎没有 apache.jar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6313271/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com