Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have big problem connecting with json webservice. I want to get gzipped data from server. Below is my code. Problem is when I'm parsing response I'm accepting gzip encoding and I'm getting gzipped data, I reading this data line by line everything looks good, and then application throw EOFException, what is wrong ?? I think server response is good if I can read some part of gzipped data. I will be thankful for any help :).

    HttpPost httppost = new HttpPost(requestUrl);
    httppost.addHeader("Accept-Encoding", "gzip");
    HttpResponse response = httpclient.execute(httppost);
    HttpEntity entity = response.getEntity();
    inputStream = entity.getContent();
    contentEncoding = response.getFirstHeader("Content-Encoding");
}

private String convertResponseToString() throws IOException {
    GZIPInputStream zis = null;

    if (contentEncoding != null
            && contentEncoding.getValue().equalsIgnoreCase("gzip")) {
        GZIPInputStream gzipStream = new GZIPInputStream(inputStream);

        if (true) {
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            byte[] buf = new byte[256];
            int len;
            while ((len = gzipStream.read(buf, 0, 256)) > 0) {
                bos.write(buf, 0, len);
            }
            bos.flush();
            buf = bos.toByteArray();
            inputStream.close();
            inputStream = new ByteArrayInputStream(buf);
        }

    }

Exception stack trace:

06-01 10:56:25.447: W/System.err(285): java.io.EOFException
06-01 10:56:25.476: W/System.err(285):  at java.util.zip.GZIPInputStream.readFully(GZIPInputStream.java:219)
06-01 10:56:25.476: W/System.err(285):  at java.util.zip.GZIPInputStream.verifyCrc(GZIPInputStream.java:202)
06-01 10:56:25.476: W/System.err(285):  at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:186)
06-01 10:56:25.476: W/System.err(285):  at org.pw.inf.requests.RequestSender.convertResponseToString(RequestSender.java:79)
06-01 10:56:25.476: W/System.err(285):  at org.pw.inf.requests.RequestSender.parseToJSON(RequestSender.java:108)
06-01 10:56:25.476: W/System.err(285):  at org.pw.inf.requests.GetConferencesListRequestSender.getResults(GetConferencesListRequestSender.java:36)
06-01 10:56:25.476: W/System.err(285):  at org.pw.inf.requests.GetConferencesListRequestSender.getResults(GetConferencesListRequestSender.java:1)
06-01 10:56:25.476: W/System.err(285):  at org.pw.inf.requests.RequestExecutor.go(RequestExecutor.java:33)
06-01 10:56:25.476: W/System.err(285):  at org.pw.inf.EventListView.containerConferences(EventListView.java:138)
06-01 10:56:25.476: W/System.err(285):  at org.pw.inf.EventListView.onClick(EventListView.java:101)
06-01 10:56:25.476: W/System.err(285):  at android.view.View.performClick(View.java:2364)
06-01 10:56:25.476: W/System.err(285):  at android.view.View.onTouchEvent(View.java:4179)
06-01 10:56:25.476: W/System.err(285):  at android.view.View.dispatchTouchEvent(View.java:3709)
06-01 10:56:25.476: W/System.err(285):  at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
06-01 10:56:25.476: W/System.err(285):  at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
06-01 10:56:25.486: W/System.err(285):  at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
06-01 10:56:25.486: W/System.err(285):  at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
06-01 10:56:25.486: W/System.err(285):  at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
06-01 10:56:25.486: W/System.err(285):  at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
06-01 10:56:25.486: W/System.err(285):  at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchTouchEvent(PhoneWindow.java:1659)
06-01 10:56:25.486: W/System.err(285):  at com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent(PhoneWindow.java:1107)
06-01 10:56:25.486: W/System.err(285):  at android.app.Activity.dispatchTouchEvent(Activity.java:2061)
06-01 10:56:25.486: W/System.err(285):  at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchTouchEvent(PhoneWindow.java:1643)
06-01 10:56:25.486: W/System.err(285):  at android.view.ViewRoot.handleMessage(ViewRoot.java:1691)
06-01 10:56:25.486: W/System.err(285):  at android.os.Handler.dispatchMessage(Handler.java:99)
06-01 10:56:25.486: W/System.err(285):  at android.os.Looper.loop(Looper.java:123)
06-01 10:56:25.486: W/System.err(285):  at android.app.ActivityThread.main(ActivityThread.java:4363)
06-01 10:56:25.486: W/System.err(285):  at java.lang.reflect.Method.invokeNative(Native Method)
06-01 10:56:25.486: W/System.err(285):  at java.lang.reflect.Method.invoke(Method.java:521)
06-01 10:56:25.486: W/System.err(285):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
06-01 10:56:25.486: W/System.err(285):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
06-01 10:56:25.486: W/System.err(285):  at dalvik.system.NativeStart.main(Native Method)
share|improve this question
I am guessing that HttpClient took care of the data extraction for you already. – nhahtdh Jun 1 '12 at 10:30
I'm not sure I was trying to do that maybe I did it wrong but I don't think so. – Mathew1990 Jun 1 '12 at 10:38
Can you post the full exception stack trace? – yorkw Jun 1 '12 at 10:49
ok I edited it . – Mathew1990 Jun 1 '12 at 10:59
Did you solve this ? – Mina Samy Aug 5 '12 at 13:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.