我有一块JSON数据如下:(为了便于阅读而简化):
{"placeName":"Paris",
"sectionCode":"",
"elapsed":"FT",
"Time":"02/24/2015 17:30:00",
"Date":"02/24/2015 00:00:00",
"Score":"1 : 1",
"statusCode":6};
我正在使用GSON库(请参阅https://code.google.com/p/google-gson/)以便在java程序中处理此JSON。
我遇到的问题是sectionCode属性(上面列表中的第二个元素)。在我正在处理的其他JSON数据块中,此元素要么不存在,要么存在,并且包含一个整数作为其值,例如14.这没有问题。但是,在这里,sectionCode的值只是""。
下面是我目前用于处理JSON块的这一部分的代码(其中jsonroot
包含JSON数据块):
//deal with situation where no section code is provided
Integer sectioncode = null;
if ((jsonroot.get("sectionCode") != null) && (jsonroot.get("sectionCode").getAsString() != null) && (!jsonroot.get("sectionCode").isJsonNull()) && (jsonroot.get("sectionCode").getAsString() != "") && (!jsonroot.get("sectionCode").equals(null))) {
sectioncode = jsonroot.get("sectionCode").getAsInt();
}
'如果'语句是尝试检测sectionCode属性的值中的空字符串,从而防止以下“getAsInt”#39;如果是这种情况,执行代码。我预计它至少会被其中一个捕获,但似乎并非如此。相反,当它遇到这部分代码时,我收到以下错误:
Exception in thread "main" java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at com.google.gson.JsonPrimitive.getAsInt(JsonPrimitive.java:260)
at MyProgram.extract_general_page_data(MyProgram.java:235)
at MyProgram.load_one_page(MyProgram.java:187)
at MyProgram.do_all(MyProgram.java:100)
at MyProgram.main(MyProgram.java:47)
我知道我可以简单地接受将发生NumberFormatException,并将try / catch块放入处理中,但这似乎是处理这种情况的一种混乱方式。
所以我的问题是: 为什么我的任何条件都没有'如果'声明检测空值?我可以用什么呢?
答案 0 :(得分:3)
你是否尝试使用字符串长度来查看它是否为零,例如
if ((jsonroot.get("sectionCode") != null) && (jsonroot.get("sectionCode").getAsString().length() != 0))
{
sectioncode = jsonroot.get("sectionCode").getAsInt();
}