gpt4 book ai didi

java - 如何获取 HttpResponse 文本

转载 作者:行者123 更新时间:2023-12-01 14:23:56 25 4
gpt4 key购买 nike

我正在使用rest上传文件,并从服务器获取响应,以防上传成功(响应代码200)我还获得了此操作的guid, header 如下所示:

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Type: text/plain;charset=ISO-8859-1
Content-Length: 36
Date: Wed, 26 Jun 2013 07:00:56 GMT

**772fb809-61d5-4e12-b6f2-133f55ed9ac7** // the guid

我想知道如何才能取出这个指南?我应该使用 getInputStream() 吗?

10x

最佳答案

您可以使用一个 BufferedReader,这是一个示例:

InputStream inputStream = conn.getInputStream(); 
BufferedReader br = new BufferedReader(new InputStreamReader(inputStream));
while(br.ready()){
String line = br.readLine();
//line has the contents returned by the inputStream
}

关于java - 如何获取 HttpResponse 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17313704/

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