本文整理汇总了Java中sagex.remote.json.JSONObject.optString方法的典型用法代码示例。如果您正苦于以下问题:Java JSONObject.optString方法的具体用法?Java JSONObject.optString怎么用?Java JSONObject.optString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sagex.remote.json.JSONObject
的用法示例。
在下文中一共展示了JSONObject.optString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: parseScale
import sagex.remote.json.JSONObject; //导入方法依赖的package包/类
private static int[] parseScale(JSONObject json) {
if (json==null) return null;
String name = json.optString("name");
if (name==null||!name.equals("scale")) return null;
int x = json.optInt("width", -1);
int y = json.optInt("height", -1);
return new int[] {x,y};
}
示例2: AppleTrailerItem
import sagex.remote.json.JSONObject; //导入方法依赖的package包/类
public AppleTrailerItem(IMediaFolder parent, JSONObject json) {
super(parent, json.optString("location"), json, json.optString("title"));
// poster, download this locally
// maybe create a "CachedImageResource" that downloads the jpg in the
// background
setThumbnail(json.optString("poster"));
}