Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import org.json.JSONException;
import org.json.JSONObject;

public class Main {
    public static JSONObject convertStringToJSON(String jsonString) throws JSONException {
        String secureJSONString = jsonString.substring(jsonString.indexOf("{"), jsonString.lastIndexOf("}") + 1);
        JSONObject jsonObject = new JSONObject(secureJSONString);
        return jsonObject;
    }
}