- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 jersey api 客户端调用基于 REST 的网络服务(该服务托管在我的本地主机中)。当我打电话时
String entity = (client response object here).getEntity(String.class);
我遇到以下异常:
Caused by: java.io.IOException: Premature EOF
at sun.net.www.http.ChunkedInputStream.readAheadBlocking(ChunkedInputStream.java:565) ~[?:1.7.0_71]
at sun.net.www.http.ChunkedInputStream.readAhead(ChunkedInputStream.java:609) ~[?:1.7.0_71]
at sun.net.www.http.ChunkedInputStream.read(ChunkedInputStream.java:696) ~[?:1.7.0_71]
at java.io.FilterInputStream.read(FilterInputStream.java:133) ~[?:1.7.0_71]
at sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(HttpURLConnection.java:3053) ~[?:1.7.0_71]
at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:283) ~[?:1.7.0_71]
at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:325) ~[?:1.7.0_71]
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:177) ~[?:1.7.0_71]
at java.io.InputStreamReader.read(InputStreamReader.java:184) ~[?:1.7.0_71]
at java.io.Reader.read(Reader.java:140) ~[?:1.7.0_71]
at com.sun.jersey.core.util.ReaderWriter.readFromAsString(ReaderWriter.java:171) ~[jersey-core-1.17.jar:1.17]
at com.sun.jersey.core.util.ReaderWriter.readFromAsString(ReaderWriter.java:157) ~[jersey-core-1.17.jar:1.17]
at com.sun.jersey.core.provider.AbstractMessageReaderWriterProvider.readFromAsString(AbstractMessageReaderWriterProvider.java:114) ~[jersey-core-1.17.jar:1.17]
at com.sun.jersey.core.impl.provider.entity.StringProvider.readFrom(StringProvider.java:73) ~[jersey-core-1.17.jar:1.17]
at com.sun.jersey.core.impl.provider.entity.StringProvider.readFrom(StringProvider.java:58) ~[jersey-core-1.17.jar:1.17]
at com.sun.jersey.api.client.ClientResponse.getEntity(ClientResponse.java:565) ~[jersey-client-1.17.jar:1.17]
... 59 more
我知道我的网络服务器正在给我 200 OK
响应。查看从基于 REST 的 webserive 获得的 json 响应:
{"user_likes":[],"status_code":200,"status_msg":"OK"}
Here is the response of my webservie:-
* Adding handle: conn: 0x7fee13808c00
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x7fee13808c00) send_pipe: 1, recv_pipe: 0
* About to connect() to localhost port 8080 (#0)
* Trying ::1...
* Connected to localhost (::1) port 8080 (#0)
> GET /social/69124/likes/?comic_uuids=ccd48dca-955f-4ad4-838e-aa558b86679d,ff201290-1f92-4b13-bf11-20b61500a9aa,f1e77de0-0c75-4f0c-8515-7fa90e9a6baa,11e19c81-9e74-4a96-a34f-9696c3ab4a4e,152a624e-e06b-47ed-83bc-75ce26ce4a13,e9f0e9d6-5e35-4012-a7a9-6c37d5781205,7c718479-d8ed-4b67-9584-1647c34c08f2,4febbdde-8ab7-4127-b178-6c91f58deab5,ad583bc5-17d6-4982-9412-26fadfb8e261,1a53e323-5577-49a3-8151-a39a75084636 HTTP/1.1
> User-Agent: curl/7.30.0
> Host: localhost:8080
> Accept: */*
>
HTTP/1.1 200 OK
* Server Apache-Coyote/1.1 is not blacklisted
< Server: Apache-Coyote/1.1
< Access-Control-Allow-Origin: *
< Content-Type: application/json;charset=utf-8
< Transfer-Encoding: chunked
< Date: Wed, 13 Apr 2016 10:28:51 GMT
<
* transfer closed with outstanding read data remaining
* Closing connection 0
curl: (18) transfer closed with outstanding read data remaining
{"user_likes":[],"status_code":200,"status_msg":"OK"}
请在这方面帮助我。
最佳答案
从您的服务器中可以清楚地看出,响应中的 Content-Length
header 存在问题。它不包含 Content-Length
header 。您应该将其添加到具有正确值的响应中。
关于java - com.sun.jersey.api.client.ClientHandlerException : java. io.IOException:过早的 EOF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36593686/
我的测试代码: int SIZE = 1900; int[][] array = new int[SIZE][]; for (int i = 0; i < SIZE; i++) { array[i
我有一堆 WAV 文件和一个将它们复制到另一个目录的脚本,但使用 SoX 处理了一些文件。输出的文件都应该有 1 个 channel ,采样率不超过 44.1khz。我的大多数文件要么有一个以上的 c
我正在运行一个相当占用内存的 Python 脚本,但似乎我的机器正在提前终止进程。我安装了 16GB(并通过 lshw -class memory 确认),但我的进程似乎在使用量达到 4GB 左右时被
我很难确定在使用 .NET 的 HttpWebRequest 类调用远程服务器(特别是 REST Web 服务)时是否有办法处理潜在的连接问题。根据我的调查,WebClient 类的行为是相同的,这在
所以我有这个网址: http://test.com/afolder/who-else-wants-to-make-horror-movies%3f/ 这是 URL 编码版本: http://test.
我是一名优秀的程序员,十分优秀!