本文整理汇总了Java中org.json.simple.JSONValue类的典型用法代码示例。如果您正苦于以下问题:Java JSONValue类的具体用法?Java JSONValue怎么用?Java JSONValue使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
JSONValue类属于org.json.simple包,在下文中一共展示了JSONValue类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleRequest
import org.json.simple.JSONValue; //导入依赖的package包/类
String handleRequest(JsonRequest request) throws Exception
{
String output = "";
String file = request.getString("path", "/");
JSONObject o = new JSONObject();
try {
this.source.addSource(file);
o.put("status", "OK");
} catch (Exception e) {
o.put("status", "ERR");
o.put("error", e.toString());
}
return JSONValue.toJSONString(o);
}
示例2: execute
import org.json.simple.JSONValue; //导入依赖的package包/类
@Override
public Object execute(String script) {
StringBuilder sb = new StringBuilder();
// Callback for scripts that want to send some message back to page-inspection.
// We utilize custom alert handling of WebEngine for this purpose.
sb.append("postMessageToNetBeans=function(e) {alert('"); // NOI18N
sb.append(WebBrowserImpl.PAGE_INSPECTION_PREFIX);
sb.append("'+JSON.stringify(e));};\n"); // NOI18N
String quoted = '\"'+JSONValue.escape(script)+'\"';
// We don't want to depend on what is the type of WebBrowser.executeJavaScript()
// for various types of script results => we stringify the result
// (i.e. pass strings only through executeJavaScript()). We decode
// the strigified result then.
sb.append("JSON.stringify({result : eval(").append(quoted).append(")});"); // NOI18N
String wrappedScript = sb.toString();
Object result = browserTab.executeJavaScript(wrappedScript);
String txtResult = result.toString();
try {
JSONObject jsonResult = (JSONObject)JSONValue.parseWithException(txtResult);
return jsonResult.get("result"); // NOI18N
} catch (ParseException ex) {
Logger.getLogger(ScriptExecutorImpl.class.getName()).log(Level.INFO, null, ex);
return ScriptExecutor.ERROR_RESULT;
}
}
示例3: postPlugin
import org.json.simple.JSONValue; //导入依赖的package包/类
/**
* 发送服务器数据到统计网页
*/
private void postPlugin() throws IOException {
// 服务器数据获取
final String pluginname = Uranium.name;
final String tmposarch = System.getProperty("os.arch");
final Map<String, Object> data = new HashMap();
data.put("guid", guid);
data.put("server_version", Bukkit.getVersion());
data.put("server_port", Bukkit.getServer().getPort());
data.put("server_tps", FMLCommonHandler.instance().getMinecraftServerInstance().recentTps[1]);
data.put("plugin_version", Uranium.getCurrentVersion());
data.put("players_online", Bukkit.getServer().getOnlinePlayers().size());
data.put("os_name", System.getProperty("os.name"));
data.put("os_arch", tmposarch.equalsIgnoreCase("amd64") ? "x86_64" : tmposarch);
data.put("os_version", System.getProperty("os.version"));
data.put("os_usemem", (Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()) / 1024 / 1024);
data.put("os_cores", Runtime.getRuntime().availableProcessors());
data.put("auth_mode", Bukkit.getServer().getOnlineMode() ? 1 : 0);
data.put("java_version", System.getProperty("java.version"));
final String jsondata = "Info=" + JSONValue.toJSONString(data);
final String url = String.format("http://api.yumc.pw/I/P/S/V/%s/P/%s", REVISION, URLEncoder.encode(pluginname, "UTF-8"));
print("Plugin: " + pluginname + " Send Data To CityCraft Data Center");
print("Address: " + url);
print("Data: " + jsondata);
// 发送数据
final JSONObject result = (JSONObject) JSONValue.parse(postData(url, jsondata));
print("Plugin: " + pluginname + " Recover Data From CityCraft Data Center: " + result.get("info"));
}
示例4: getPortResponseBasedOnSwitchId
import org.json.simple.JSONValue; //导入依赖的package包/类
/**
* get All Ports.
*
* @param switchId
* the switch id
* @return List<PortInfo>
*/
public List<PortInfo> getPortResponseBasedOnSwitchId(String switchId) {
log.info("Inside ServiceSwitchImpl method getPortResponseBasedOnSwitchId");
List<PortInfo> switchPortsInfoList = new ArrayList<PortInfo>();
ObjectMapper mapper = new ObjectMapper();
String key = switchId;
try {
JSONObject jsonObject = switchIntegrationService.getSwitchPorts();
log.info("getPortResponseBasedOnSwitchId GET_SWITCH_PORT_DATA_URL api call response is "
+ jsonObject);
if (jsonObject != null) {
Object object = jsonObject.get(key);
if (object != null) {
String val = JSONValue.toJSONString(object);
PortDetailResponse portDetailResponse = mapper.readValue(
val, PortDetailResponse.class);
List<PortDesc> portDescList = portDetailResponse
.getPortDesc();
if (portDescList != null && !portDescList.isEmpty()) {
switchPortsInfoList = switchDataUtil.getSwitchPortInfo(
portDescList, key, switchPortsInfoList);
}
}
}
} catch (Exception exception) {
log.error("Exception in getPortResponseBasedOnSwitchId "
+ exception.getMessage());
}
log.info("exit ServiceSwitchImpl method getPortResponseBasedOnSwitchId");
return switchPortsInfoList;
}
示例5: setRulebaseHtmlFile
import org.json.simple.JSONValue; //导入依赖的package包/类
/**
* This function writes the info of the rulbase to the html file
* @param htmlFile The html to write to
* @param details {@link FileDetails} contain info about the html file
* @throws IOException
*/
public void setRulebaseHtmlFile(PrintStream htmlFile , FileDetails details) throws IOException{
htmlFile.println("\t\tvar rulebase = " + details.getRulebaseData().getRulebaseDataContent() + ";");
htmlFile.print("\t\tvar uid_to_name = ");
htmlFile.print(JSONValue.toJSONString(details.getUidToName()));
htmlFile.println(";");
htmlFile.print("\t\tvar failed_creating_layer = ");
htmlFile.print(JSONValue.toJSONString(details.getRulebaseData().isFailedCreatingRulebase()));
htmlFile.println(";");
htmlFile.print("\t\tvar inline_layer_uid_to_file_name = ");
htmlFile.print(JSONValue.toJSONString(details.getRulebaseData().getInlineLayerUidToFileNameMap()));
htmlFile.println(";");
setDataInHtmlFile(htmlFile, details);
}
示例6: checkForUpdates
import org.json.simple.JSONValue; //导入依赖的package包/类
/**
* Checks if updates are available.
*/
private void checkForUpdates() {
try {
URL url = new URL("https://api.spiget.org/v2/resources/50955/versions?size=1&sort=-id");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.addRequestProperty("User-Agent", "EmojiChat Update Checker"); // Sets the user-agent
InputStream inputStream = connection.getInputStream();
InputStreamReader reader = new InputStreamReader(inputStream);
JSONArray value = (JSONArray) JSONValue.parseWithException(reader);
latestVersion = Double.parseDouble(((JSONObject) value.get(value.size() - 1)).get("name").toString());
updateAvailable = currentVersion < latestVersion;
} catch (Exception ignored) { // Something happened, not sure what (possibly no internet connection), so no updates available
updateAvailable = false;
}
}
示例7: createHar
import org.json.simple.JSONValue; //导入依赖的package包/类
@SuppressWarnings("rawtypes")
private void createHar(String pt, String rt) {
Har<String, Log> har = new Har<>();
Page p = new Page(pt, har.pages());
har.addPage(p);
for (Object res : (JSONArray) JSONValue.parse(rt)) {
JSONObject jse = (JSONObject) res;
if (jse.size() > 14) {
Entry e = new Entry(jse.toJSONString(), p);
har.addEntry(e);
}
}
har.addRaw(pt, rt);
Control.ReportManager.addHar(har, (TestCaseReport) Report,
escapeName(Data));
}
示例8: getPageMap
import org.json.simple.JSONValue; //导入依赖的package包/类
/**
* parse and map the pages and its page timings
*
* @param data json data
* @return json map
*/
private static JSONObject getPageMap(String data) {
JSONObject pageMap = new JSONObject();
JSONObject ob = (JSONObject) JSONValue.parse(data);
for (Object tc : ob.keySet()) {
JSONArray hars = (JSONArray) ((JSONObject) ob.get(tc)).get("har");
for (Object e : hars) {
JSONObject har = (JSONObject) ((JSONObject) e).get("har");
JSONObject page = (JSONObject) ((JSONArray) (((JSONObject) har.get("log")).get("pages"))).get(0);
Object pagename = ((JSONObject) har.get("config")).get("name");
if (!pageMap.containsKey(pagename)) {
pageMap.put(pagename, new JSONArray());
}
JSONObject pageData = (JSONObject) page.get("pageTimings");
pageData.put("config", har.get("config"));
((JSONArray) pageMap.get(pagename)).add(pageData);
}
}
return pageMap;
}
示例9: executeImpl
import org.json.simple.JSONValue; //导入依赖的package包/类
@SuppressWarnings("unchecked")
public JSONArray executeImpl(String userId, WebScriptRequest req, WebScriptResponse res) throws IOException,
ParseException
{
JSONArray jsonUsers = (JSONArray) JSONValue.parseWithException(req.getContent().getContent());
JSONArray result = new JSONArray();
for (Object o : jsonUsers)
{
String user = (o == null ? null : o.toString());
if (user != null)
{
JSONObject item = new JSONObject();
item.put(user, subscriptionService.follows(userId, user));
result.add(item);
}
}
return result;
}
示例10: executeImpl
import org.json.simple.JSONValue; //导入依赖的package包/类
public JSONObject executeImpl(String userId, WebScriptRequest req, WebScriptResponse res) throws IOException,
ParseException
{
JSONArray jsonUsers = (JSONArray) JSONValue.parseWithException(req.getContent().getContent());
for (Object o : jsonUsers)
{
String user = (o == null ? null : o.toString());
if (user != null)
{
subscriptionService.follow(userId, user);
}
}
return null;
}
示例11: executeImpl
import org.json.simple.JSONValue; //导入依赖的package包/类
public JSONObject executeImpl(String userId, WebScriptRequest req, WebScriptResponse res) throws IOException,
ParseException
{
JSONObject obj = (JSONObject) JSONValue.parseWithException(req.getContent().getContent());
Object setPrivate = obj.get("private");
if (setPrivate != null)
{
if (setPrivate.toString().equalsIgnoreCase("true"))
{
subscriptionService.setSubscriptionListPrivate(userId, true);
} else if (setPrivate.toString().equalsIgnoreCase("false"))
{
subscriptionService.setSubscriptionListPrivate(userId, false);
}
}
return super.executeImpl(userId, req, res);
}
示例12: executeImpl
import org.json.simple.JSONValue; //导入依赖的package包/类
public JSONObject executeImpl(String userId, WebScriptRequest req, WebScriptResponse res) throws IOException,
ParseException
{
JSONArray jsonUsers = (JSONArray) JSONValue.parseWithException(req.getContent().getContent());
for (Object o : jsonUsers)
{
String user = (o == null ? null : o.toString());
if (user != null)
{
subscriptionService.unfollow(userId, user);
}
}
return null;
}
示例13: decodeJSON
import org.json.simple.JSONValue; //导入依赖的package包/类
/**
* decodes JSON formatted text into a map.
*
* @return Map parsed from a JSON formatted string
* <p>
* If the json text is not a map, a map with the key "value" will be returned.
* the value of "value" will either be an List, String, Number, Boolean, or null
* <p>
* if the String is formatted badly, null is returned
*/
public static Map decodeJSON(String json) {
try {
Object object = JSONValue.parse(json);
if (object instanceof Map) {
return (Map) object;
}
// could be : ArrayList, String, Number, Boolean
Map map = new HashMap();
map.put("value", object);
return map;
} catch (Throwable t) {
Debug.out("Warning: Bad JSON String: " + json, t);
return null;
}
}
示例14: MongoHandler
import org.json.simple.JSONValue; //导入依赖的package包/类
public MongoHandler(Socket client, Request req, MongoClient mongoconn) throws Exception {
Object obj = JSONValue.parse(req.getContent());
JSONObject jobj = (JSONObject)obj;
System.out.println(req.getContent());
if((database = (String)jobj.get("database")) == null) {
throw new Exception("Database not specified");
}
if((collection = (String)jobj.get("collection")) == null){
throw new Exception("Collection not specified");
}
if((operation = (String)jobj.get("operation")) == null){
throw new Exception("Operation not specified");
}
data = (JSONObject)jobj.get("data");
this.dbconn = mongoconn;
mdb = dbconn.getDatabase(database);
mcollection = mdb.getCollection(collection);
this.client = client;
}
示例15: readCommandLineOpts
import org.json.simple.JSONValue; //导入依赖的package包/类
public static Map readCommandLineOpts() {
Map ret = new HashMap();
String commandOptions = System.getProperty("leaf.options");
if (commandOptions != null) {
String[] configs = commandOptions.split(",");
for (String config : configs) {
config = URLDecoder.decode(config);
String[] options = config.split("=", 2);
if (options.length == 2) {
Object val = JSONValue.parse(options[1]);
if (val == null) {
val = options[1];
}
ret.put(options[0], val);
}
}
}
return ret;
}