Here you can find the source of toJson(String jsonp)
public static final String toJson(String jsonp)
//package com.java2s; //License from project: Apache License public class Main { public static final String toJson(String jsonp) { final String prefix = "loaded("; final String suffix = ")"; return jsonp.substring(0 + prefix.length(), jsonp.length() - suffix.length()); }/*from w ww. j a v a 2s . c o m*/ }