Splunk Dev

Java Sdk - query to return JSON

ikenahim
New Member

I'm struggling with this, I have no experience with dealing with JSON. I have a query to return data as JSON format, this my method:

public JSONOBJECT Post_request()
{
String Query = "search index= nessus "; // for testing
Job job = session.make_Request().getJobs().create(Query);
while(!job.isDone())
{
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
JobResultsArgs resultsArgs = new JobResultsArgs();
resultsArgs.setOutputMode(JobResultsArgs.OutputMode.JSON);
InputStream results = job.getResults(resultsArgs);

// here I don't really know how I can parse this long string to JSON object.

    try
    {
        ResultsReaderJson resultsReader = new ResultsReaderJson(results);
        MultiResultsReaderJson multiResultsReader = new MultiResultsReaderJson(results);

        return  resultsReader;
    } catch (IOException e)
    {
        e.printStackTrace();
    }
    return null;
}
0 Karma

ikenahim
New Member

I'm using Java 11 and Splunk enterprise

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...