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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T22:21:12+00:00 2026-06-05T22:21:12+00:00

I have a jersey client that is getting JSON from a source that I

  • 0

I have a jersey client that is getting JSON from a source that I need to get into properly formatted JSON:

My JSON String looks like the folllowing when grabbing it via http request:

{
    "properties": [
        {
            someproperty: "aproperty",
            set of data: {
                keyA: "SomeValueA",
                keyB: "SomeValueB",
                keyC: "SomeValueC"
            }
        }
    ]
}

I am having problems because the json has to be properly formatted and keyA, keB, and keyC are not surrounded in quotes. Is there some library that helps add quotes or some best way to go about turning this string to properly formatted json? Or if there is some easy way to convert this to a json object without writing a bunch of classes with variables and lists that match the incoming structure?

  • 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-05T22:21:14+00:00Added an answer on June 5, 2026 at 10:21 pm

    you can use json-lib. it’s very convenient! you can construct your json string like this:

    JSONObject dataSet = new JSONObject();
    dataSet.put("keyA", "SomeValueA") ;
    dataSet.put("keyB", "SomeValueB") ;
    dataSet.put("keyC", "SomeValueC") ;
    
    JSONObject someProperty = new JSONObject();
    dataSet.put("someproperty", "aproperty") ;
    
    JSONArray properties = new JSONArray();
    properties.add(dataSet);
    properties.add(someProperty);
    

    and of course you can get your JSON String simply by calling properties.toString()

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

Sidebar

Related Questions

Using Jersey, I want to be able to have a GET request, that would
I have a Jersey client that is successfully calling a REST service and populating
I have the following returned from a Jersey @GET method. It works, fine but
I need to profile a server-client Java application (based on Jersey/REST FYI). I have
I have an Jersey API that returns Odata standard responses and consumes the same.
So I have a project I am converting over from Spring MVC to Jersey
I have written a REST web service with Jersey Server (that totally rocks !).
I have Jersey client with a lot of functionality and now requirements are changed
I have a Jersey REST service with a resource class that calls methods on
I have the following scenario: Server: Jetty (with configured JAAS) Client: Jersey invoked via

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.