本文整理汇总了Java中com.alibaba.fastjson.JSONObject.getBoolean方法的典型用法代码示例。如果您正苦于以下问题:Java JSONObject.getBoolean方法的具体用法?Java JSONObject.getBoolean怎么用?Java JSONObject.getBoolean使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.alibaba.fastjson.JSONObject
的用法示例。
在下文中一共展示了JSONObject.getBoolean方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: FromJsonString
import com.alibaba.fastjson.JSONObject; //导入方法依赖的package包/类
public static AschResult FromJsonString(String jsonString){
AschResult result = new AschResult();
result.rawJson = jsonString;
result.jsonObject = JSONObject.parseObject(jsonString);
JSONObject json = result.jsonObject;
if (json.containsKey("success")){
result.successful = json.getBoolean("success");
}
if (json.containsKey("error")){
result.error = json.getString("error");
}
return result;
}
示例2: fieldsFixedPartIsCorrect
import com.alibaba.fastjson.JSONObject; //导入方法依赖的package包/类
/**
* fieldsFixedPartIsCorrect
* Check the fixed parts _ums_id_, _ums_ts_, _ums_op_ are correct
* @param fields
* @return
*/
private boolean fieldsFixedPartIsCorrect(JSONArray fields) {
JSONObject jo1 = fields.getJSONObject(0);
if (!jo1.getString("name").equals("_ums_id_") || !jo1.getString("type").equals("long")
|| jo1.getBoolean("nullable")) {
return false;
}
JSONObject jo2 = fields.getJSONObject(1);
if (!jo2.getString("name").equals("_ums_ts_") || !jo2.getString("type").equals("datetime")
|| jo2.getBoolean("nullable")) return false;
JSONObject jo3 = fields.getJSONObject(2);
if (!jo3.getString("name").equals("_ums_op_") || !jo3.getString("type").equals("string")
|| jo3.getBoolean("nullable")) return false;
return true;
}
示例3: permission
import com.alibaba.fastjson.JSONObject; //导入方法依赖的package包/类
@Override
public int permission(JSONArray datas, int id) {
for (int i = 0; i < datas.size(); i ++) {
JSONObject json = datas.getJSONObject(i);
if (json.getBoolean("checked")) {
// 新增权限
UpmsUserPermission upmsUserPermission = new UpmsUserPermission();
upmsUserPermission.setUserId(id);
upmsUserPermission.setPermissionId(json.getIntValue("id"));
upmsUserPermission.setType(json.getByte("type"));
upmsUserPermissionMapper.insertSelective(upmsUserPermission);
} else {
// 删除权限
UpmsUserPermissionExample upmsUserPermissionExample = new UpmsUserPermissionExample();
upmsUserPermissionExample.createCriteria()
.andPermissionIdEqualTo(json.getIntValue("id"))
.andTypeEqualTo(json.getByte("type"));
upmsUserPermissionMapper.deleteByExample(upmsUserPermissionExample);
}
}
return datas.size();
}
示例4: rolePermission
import com.alibaba.fastjson.JSONObject; //导入方法依赖的package包/类
@Override
public int rolePermission(JSONArray datas, int id) {
List<Integer> deleteIds = new ArrayList<>();
for (int i = 0; i < datas.size(); i ++) {
JSONObject json = datas.getJSONObject(i);
if (!json.getBoolean("checked")) {
deleteIds.add(json.getIntValue("id"));
} else {
// 新增权限
UpmsRolePermission upmsRolePermission = new UpmsRolePermission();
upmsRolePermission.setRoleId(id);
upmsRolePermission.setPermissionId(json.getIntValue("id"));
upmsRolePermissionMapper.insertSelective(upmsRolePermission);
}
}
// 删除权限
if (deleteIds.size() > 0) {
UpmsRolePermissionExample upmsRolePermissionExample = new UpmsRolePermissionExample();
upmsRolePermissionExample.createCriteria()
.andPermissionIdIn(deleteIds)
.andRoleIdEqualTo(id);
upmsRolePermissionMapper.deleteByExample(upmsRolePermissionExample);
}
return datas.size();
}
示例5: init
import com.alibaba.fastjson.JSONObject; //导入方法依赖的package包/类
private void init(JSONObject json) throws WeiboException {
if(json!=null){
try {
id = json.getString("id");
screenName = json.getString("screen_name");
name = json.getString("name");
province = json.getInteger("province");
city = json.getInteger("city");
location = json.getString("location");
description = json.getString("description");
url = json.getString("url");
profileImageUrl = json.getString("profile_image_url");
userDomain = json.getString("domain");
gender = json.getString("gender");
followersCount = json.getInteger("followers_count");
friendsCount = json.getInteger("friends_count");
favouritesCount = json.getInteger("favourites_count");
statusesCount = json.getInteger("statuses_count");
verifiedType = json.getInteger("verified_type");
verifiedReason = json.getString("verified_reason");
allowAllActMsg = json.getBoolean("allow_all_act_msg");
allowAllComment = json.getBoolean("allow_all_comment");
followMe = json.getBoolean("follow_me");
avatarLarge = json.getString("avatar_large");
onlineStatus = json.getInteger("online_status");
statusId = json.getString("status_id");
biFollowersCount = json.getInteger("bi_followers_count");
if(!json.getString("remark").isEmpty()){
remark = json.getString("remark");
}
lang = json.getString("lang");
weihao = json.getString("weihao");
} catch (JSONException jsone) {
throw new WeiboException(jsone.getMessage() + ":" + json.toString(), jsone);
}
}
}
示例6: convert
import com.alibaba.fastjson.JSONObject; //导入方法依赖的package包/类
@Override
public ArrayList<MultipleItemEntity> convert() {
final JSONArray array = JSON.parseObject(getJsonData()).getJSONArray("data");
final int size = array.size();
for (int i = 0; i < size; i++) {
final JSONObject data = array.getJSONObject(i);
final int id = data.getInteger("id");
final String name = data.getString("name");
final String phone = data.getString("phone");
final String address = data.getString("address");
final boolean isDefault = data.getBoolean("default");
final MultipleItemEntity entity = MultipleItemEntity.builder()
.setItemType(AddressItemType.ITEM_ADDRESS)
.setField(MultipleFields.ID, id)
.setField(MultipleFields.NAME, name)
.setField(MultipleFields.TAG, isDefault)
.setField(AddressItemFields.PHONE, phone)
.setField(AddressItemFields.ADDRESS, address)
.build();
ENTITIES.add(entity);
}
return ENTITIES;
}
示例7: parseData
import com.alibaba.fastjson.JSONObject; //导入方法依赖的package包/类
@Override
protected void parseData(JSONObject data) {
sendAccount = data.getString(KEY_SEND);
openAccount = data.getString(KEY_OPEN);
redPacketId = data.getString(KEY_RP_ID);
isGetDone = data.getBoolean(KEY_DONE);
}
示例8: getConfig
import com.alibaba.fastjson.JSONObject; //导入方法依赖的package包/类
private static StatusBarNotificationConfig getConfig(String key) {
StatusBarNotificationConfig config = new StatusBarNotificationConfig();
String jsonString = getSharedPreferences().getString(key, "");
try {
JSONObject jsonObject = JSONObject.parseObject(jsonString);
if (jsonObject == null) {
return null;
}
config.downTimeBegin = jsonObject.getString("downTimeBegin");
config.downTimeEnd = jsonObject.getString("downTimeEnd");
config.downTimeToggle = jsonObject.getBoolean("downTimeToggle");
config.ring = jsonObject.getBoolean("ring");
config.vibrate = jsonObject.getBoolean("vibrate");
config.notificationSmallIconId = jsonObject.getIntValue("notificationSmallIconId");
config.notificationSound = jsonObject.getString("notificationSound");
config.hideContent = jsonObject.getBoolean("hideContent");
config.ledARGB = jsonObject.getIntValue("ledargb");
config.ledOnMs = jsonObject.getIntValue("ledonms");
config.ledOffMs = jsonObject.getIntValue("ledoffms");
config.titleOnlyShowAppName = jsonObject.getBoolean("titleOnlyShowAppName");
config.notificationFolded = jsonObject.getBoolean("notificationFolded");
config.notificationEntrance = (Class<? extends Activity>) Class.forName(jsonObject.getString("notificationEntrance"));
config.notificationColor = jsonObject.getInteger("notificationColor");
} catch (Exception e) {
e.printStackTrace();
}
return config;
}
示例9: push
import com.alibaba.fastjson.JSONObject; //导入方法依赖的package包/类
@JSMethod
public void push(String encodeParam, JSCallback callback) {
if (TextUtils.isEmpty(encodeParam)) {
return;
}
try {
JSONObject options = JSON.parseObject(encodeParam);
String url = "";
UWXTheme.NavBar navBar = null;
JSONObject param = null;
boolean animated = false;
if (options.containsKey(UWXBundleInfo.KEY_URL)) {
url = options.getString(UWXBundleInfo.KEY_URL);
}
if (options.containsKey(UWXBundleInfo.KEY_NAV_BAR)) {
String _navBar = options.getString(UWXBundleInfo.KEY_NAV_BAR);
if (!TextUtils.isEmpty(_navBar)) {
navBar = JSON.parseObject(_navBar, UWXTheme.NavBar.class);
}
}
if (options.containsKey(UWXBundleInfo.KEY_PARAM)) {
param = options.getJSONObject(UWXBundleInfo.KEY_PARAM);
}
if (options.containsKey(UWXBundleInfo.KEY_SCENE_CONFIGS)) {
animated = options.getBoolean(UWXBundleInfo.KEY_SCENE_CONFIGS);
}
UWLog.v("params=" + encodeParam);
UWXTheme theme = null;
if (navBar == null) {
theme = UWXThemeManager.getInstance().getPageTheme();
} else {
UWXThemeManager.getInstance().getPageTheme().setNavBar(navBar);
theme = UWXThemeManager.getInstance().getPageTheme();
}
if (!TextUtils.isEmpty(url)) {
UWXJumpUtil.openPageByUrl((Activity) mWXSDKInstance.getContext(), url, param, theme);
if (callback != null) {
callback.invoke(MSG_SUCCESS);
}
} else {
callback.invoke(MSG_FAILED);
}
} catch (Exception e) {
WXLogUtils.eTag(TAG, e);
if (callback != null) {
callback.invoke(MSG_FAILED);
}
}
}
示例10: getBooleanFromDataByKey
import com.alibaba.fastjson.JSONObject; //导入方法依赖的package包/类
/**
* 根据key获取返回对象data中的Boolean值(只是第一层key),需要soa响应状态码是0
*
* @param result
* @param key
* @return
* @author xuxiao
* @created 2014年5月7日 下午6:00:25
*/
public static Boolean getBooleanFromDataByKey(final String result, final String key) {
final JSONObject data = getDataObj(result);
if (null != data) {
return data.getBoolean(key);
} else {
return Boolean.FALSE;
}
}