我正在尝试解析JSON数据。数据是一个包含对象的数组。 这是我从URL获得的JSON数组:
["{content:Airfare}",
"{content:Dues \/ Subscriptions}",
"{content:Education \/ Training}",
"{content:Entertainment}",
"{content:GS-OCWD}",
"{content:GS-OCWE}",
"{content:GS-Shift A}",
"{content:GS-Shift B}",
"{content:GS-Shift C}",
"{content:Ground Transportation}",
"{content:Legal Fees}",
"{content:Lodging}",
"{content:Meals}",
"{content:Mileage}",
"{content:Office Supplies}",
"{content:Other Expenses}",
"{content:Prof. Dues & Memberships}",
"{content:Rental Car}",
"{content:Telephone}",
"{content:Telephone \/ Internet}",
"{content:Tolls \/ Parking}"]
这是解析我的.m文件中的JSON数组的代码
NSError *error = nil;
NSData *jsonData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://localhost:8080/de.vogella.jersey.final/rest/notes"]];
NSArray *jsonArray = [NSJSONSerialization JSONObjectWithData: jsonData options: NSJSONReadingMutableContainers error: &error];
if (!jsonArray) {
NSLog(@"Error parsing JSON: %@",error);
} else {
for(NSDictionary *item in jsonArray) {
NSLog(@"Item: %@", [item objectForKey:@"content"]);
[_identificationTypes1 addObject:item];
}
}
当执行第NSLog(@"Item: %@", [item objectForKey:@"content"]);
行时,应用程序崩溃并发出[__NSCFString objectForKey:]: unrecognized selector
错误。它无法读取关键内容。如果我将该行更改为NSLog(@"Item: %@", item);
,我可以看到所有值,例如{content:Airfare}
。我只需要Airfare价值。有人可以帮助我
这是生成JSON的代码。我正在使用Jersey和JAVA。 你能帮我解决一下URL中的JSON格式吗?这是我的DAO代码:
public JSONArray getAllNotes()
{
PreparedStatement prepStmt = null;
List<Note> notes = new ArrayList<Note>();
try {
String cSQL = "SELECT EXPENDITURE_TYPE FROM PA_ONLINE_EXPENDITURE_TYPES_V;
prepStmt = connection.prepareStatement(cSQL);
ResultSet result = prepStmt.executeQuery();
while (result.next())
{
Note note = new Note();
//note.setNoteId(result.getInt(1));
note.setContent(result.getString(1));
//note.setCreatedDate( new java.util.Date(result.getDate(3).getTime()));
notes.add(note);
}
return new JSONArray(notes);
} catch (SQLException e) {
e.printStackTrace();
prepStmt = null;
return null;
}
}
这是POJO方法:
@Override
public String toString() {
//return "{Content:"+content+"}" ;
return "ExpType [content=" + content + "]";
}
这是调用DAO方法的方法:
@GET
@Produces({MediaType.APPLICATION_JSON})
public JSONArray getNotes() {
return dao.getAllNotes();
}
答案 0 :(得分:0)
你的JSON错了。它只是一个字符串数组,这就是你得到这个错误的原因。真正应该是这样的:
[{"content":"Airfare"},
{"content":"Dues \/ Subscriptions"},
{"content":"Education \/ Training"},
... etc]