Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import org.json.JSONArray;
import org.json.JSONException;

public class Main {

    public static JSONArray stringToJSONArray(String str) throws Exception {
        try {
            return new JSONArray(str);
        } catch (JSONException e) {
            throw new RuntimeException(e.getMessage() + ":" + str, e);
        }

    }
}