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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T10:30:14+00:00 2026-06-15T10:30:14+00:00

How can I parse the following to retrieve the following. {docs: [ SolrDocument[{content_type=[text/plain], description=/mnt/sdcard/A.txt,

  • 0

How can I parse the following to retrieve the following.

{"docs": [
    "SolrDocument[{content_type=[text/plain], description=/mnt/sdcard/A.txt, id=4df6fa43-1a99-4475-bc5b-80dd0ab6d114, name=uploadedfile}]",
    "SolrDocument[{content_type=[text/plain], description=asdf.png, id=9fb20d5d-cf39-4635-9a22-64560124809e, name=uploadedfile}]"]
}

I need to retrieve description into a string array and id to another string array.
I tried

a="docs"
JSONObject jobj = new JSONObject(line);
JSONArray IDS = (JSONArray) jobj.get(a);

This works but it returns an array of strings

  • 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-15T10:30:18+00:00Added an answer on June 15, 2026 at 10:30 am

    The data you are trying to parse isn’t valid JSON, so you are now in RegEx territory. So reading each line out of the JSONArray you could extract what you are after like this:

    String data = "SolrDocument[{content_type=[text/plain], description=/mnt/sdcard/A.txt, id=4df6fa43-1a99-4475-bc5b-80dd0ab6d114, name=uploadedfile}]";
    Pattern values = Pattern.compile("(description|id)=([\\S]+),", Pattern.CASE_INSENSITIVE);
    Matcher matches = values.matcher(data);
    while(matches.find()) {
      System.out.println(matches.group(1) + "=" + matches.group(2));
    }
    

    This will print out:

    description=/mnt/sdcard/A.txt
    id=4df6fa43-1a99-4475-bc5b-80dd0ab6d114
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

how can i parse the particular 'li' field from the following using jquery template?
Does a tool exist that can parse text and output that text, hyper-linked to
I can retrieve individuals from my ontology using following query: SELECT ?indiv WHERE {
How can I retrieve a file from the following method: public void getJson(String pathToFile)
How i can parse and extract the parameters from an SQL Query using delphi?
Is there a Python library that can parse an CSS selector and emit an
Does anybody know a Perl library that can parse XML documents and enables me
I need a PHP Regex that can parse .strings files. In particular, it needs
I'm using RSS library so i can parse Atom and RSS in Ruby and
I need a function that can parse both 1,123.12 and 1.123,12 to 1123.12 There

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.