如果“结果代码”:android

时间:2016-07-29 05:51:22

标签: java android jsonresult

我得到服务器响应,如“resultcode”:“10”,如果resultcode为0,我想创建条件然后做一些事情。我怎么能这样做

if (response.getString("resultDesc").equalsIgnoreCase("Transaction Successful")) {}

这里我想用“0”替换交易成功

2 个答案:

答案 0 :(得分:1)

试试这个:

int val = response.getInt("resultCode");
if(val.equals(0)){
//do something
}

答案 1 :(得分:0)

首先从jsonobject获取结果代码并将其解析为int,然后在if条件下使用它。

 int resultcode = Integer.parseInt(jsonObject.getString("resultcode"));
                 if (resultcode == 0) {
                 //Do Your code

                 }