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 7926803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T18:57:08+00:00 2026-06-03T18:57:08+00:00

I am posting data with embedded double quotes from a libcurl client to a

  • 0

I am posting data with embedded double quotes from a libcurl client to a Tomcat servlet.
The servlet reads the data and sends it back to my client.

What I send looks like this

{
   "id": 1,
   "name": "Foo",
}

But what I receive from the servlet looks like this

{
   \"id\": 1,
   \"name\": \"Foo\"
}

i.e. all the double quotes get escaped.

How do I prevent the servlet from escaping the quotes?
My servlet is doing something like this inside the doPost method

public void doPost(HttpServletRequest request,
                      HttpServletResponse response)
        throws IOException, ServletException
{
    BufferedReader reader = request.getReader();
    StringBuilder content = new StringBuilder();
    char[] buffer = new char[4 * 1024];
    int len = 0;
    while (len >= 0) { 
        len = reader.read(buffer, 0, buffer.length); 
        if (len > 0) { 
            content.append(buffer, 0, len);
        }
    }

    PrintWriter out = response.getWriter(); 
    out.print(content.toString())
}

Edit
This fixes my problem.

URLEncoder.encode(content.toString(),"UTF-8")
  • 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-06-03T18:57:10+00:00Added an answer on June 3, 2026 at 6:57 pm

    Encode the string before you write it.

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

Sidebar

Related Questions

I'm having some trouble POSTing data from a client machine to our internal site
I have forms posting data from instances of a particular abstract class: public abstract
I'm posting data from a Flex app to a php script. GET works fine
I have an embedded system posting data to a JSON REST service via HTTP.
I'm having trouble posting data to a WCF Service via HTTP Post and send
I am posting data to servlet using jquery .post() method. The data is being
There is an external server posting data back to my server that is coming
I am posting data from one ASP.NET page to another via jQuery ajax call
I was Posting Data from Android Mobile to Server over HTTP connection. I was
I have a problem POSTing data via HTTPS in Java. The server response is

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.