小编典典
不用编写自己的函数,而是使用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