java null转int_将String转换为int。如果String为null,则将int设置为0

小编典典

不用编写自己的函数,而是使用try-catch的内部构造。您的问题是,jsonarrayor

jsonarray.getJSONObject(i)或值本身是a,null并且您在null引用上调用方法。请尝试以下操作:

int block_id = 0; //this set's the block_id to 0 as a default.

try {

block_id = Integer.parseInt(jsonarray.getJSONObject(i).getString("block_id")); //this will set block_id to the String value, but if it's not convertable, will leave it 0.

} catch (Exception e) {};

在Java中,异常用于标记意外情况。例如,将非数字解析为数字String(NumberFormatException)或在null引用上调用方法(NullPointerException)。您可以通过多种方式捕获它们。

try{

//some code

} catch (NumberFormatException e1) {

e.printStackTrace() //very important - handles the Exception but prints the information!

} catch (NullPointerException e2) {

e.printStackTrace();

}

或利用事实,它们都可以扩展Exception:

try {

//somecode

} catch (Exception e) {

e.printStackTrace;

};

或从Java 7开始:

try {

//somecode

} catch (NullPointerException | NumberFormatException e) {

e.printStackTrace;

};

注意

我相信您会仔细阅读答案,请记住,在StackOverflow上,我们需要最小,完整和可验证的示例,其中包括您的异常的StackTrace。就您而言,它可能始于以下内容:

Exception in thread "main" java.lang.NullPointerException

然后,调试会容易得多。没有它,这只是猜测。

编辑: 根据公认的答案

接受的答案很好,并且可以使用,只要用key:存储的值block_id是数字即可。如果不是数字,您的应用程序将崩溃。

代替:

JSONObject jObj = jsonarray.getJSONObject(i);

int block_id = jObj.has("block_id") ? jObj.getInt("block_id") : 0;

一个应该使用:

int block_id;

try{

JSONObject jObj = jsonarray.getJSONObject(i);

block_id = jObj.has("block_id") ? jObj.getInt("block_id") : 0;

} catch (JSONException | NullPointerException e) {

e.printStackTrace();

}

2020-11-23

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值