Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7073059
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:53:02+00:00 2026-05-28T05:53:02+00:00

I wrote a tokenizer for HTTP messages in Java. It has a method nextToken()

  • 0

I wrote a tokenizer for HTTP messages in Java. It has a method nextToken() which supposed to return a string containing the whole HTTP message that was received. The problem is that the message ends before the expected body size has been read.

I read the input stream all the way to the beginning of the body. Then I try to read n bytes from the stream where n is the size in bytes of the body which is stated in the Content-Length header. The problem is that inside the while loop, the line charsRead = in.read(buffer) blocks because there is no more input in the input stream. But it happens before n bytes were read.

Example: In a body with size 12,493, it blocks when there are more 675 bytes expected to be read.

The input stream works with UTF-8 so every byte is encoded to one char.

/* Somewhere else in the code: 
InputStreamReader _isr =
     new InputStreamReader(clientSocket.getInputStream(), "UTF-8")
*/
BufferedReader in = new BufferedReader(_isr);
StringBuilder tmp = new StringBuilder();
String line = "";
boolean body = false;
int bodylen = -1;

for (;;) {
   line = in.readLine();

   if (line == null)
       break;
   if (line.equals("")) { /* We've reached the body */
       body = true;
       break;
   }

   tmp.append(line + "\r\n");

   if ((bodylen == -1) && (line.contains("Content-Length:"))) {
       /* Make `bodylen` hold the length of the body */
       String[] splitted = line.split("Content-Length:");
       bodylen = Integer.parseInt(splitted[1].trim());
   }
}

if (body == true) { 
    int charsRead;
    char[] buffer = new char[1024];

    while (bodylen > 0) {
        charsRead = in.read(buffer);
        if (charsRead == -1)
            break;
        bodylen -= charsRead;
        tmp.append(buffer);
    }
}

Why does it happen and how to solve it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T05:53:03+00:00Added an answer on May 28, 2026 at 5:53 am

    It seems you are confusing characters with bytes. Content-Length is in bytes, but your are counting characters.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

See also C Tokenizer Here is a quick substr() for C that I wrote
Wrote a quick Java proggy to spawn 10 threads with each priority and calculate
I wrote a component that displays a filename, a thumbnail and has a button
I wrote a small loop which added 10,000 documents into the IndexWriter and it
Wrote up a basic file handler for a Java Homework assignment, and when I
I wrote a method tha uses myarray, defined in the same class. When I
I wrote an android app, which requires large amount of data to be transfered
I needed a String tokenizer in Haskell but there is apparently nothing already defined
I wrote code in which .getJSON api from jquery is used to fetch images
I wrote a code which copies an answer in calculator to clipboard, then calculator

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.