0

我需要解析存储在单个文件中的 json 列表!

到目前为止我所做的是,test.json 文件包含:

{"location":"lille","lat":28.4,"long":51.7,"country":"FR"}

有了这个文件,我有下面的代码

    public class JsonReader {
        public static void main(String[] args) throws ParseException {
            JSONParser parser = new JSONParser();
    try {
    Object obj = parser.parse(new FileReader("c:\\test.json"));
    JSONObject locationjson= (JSONObject) obj;
        String location= (String) locationjson.get("location");
        System.out.printf("%s",location);
    long lat = (Long) locationjson.get("lat");
    System.out.printf("\t%d",lat);
//similarly for other objects           

这是一个工作代码,我只能在文件 test.json 中打印一个 json

现在,如果我必须在文件中打印 json 列表:test1.json,如下所示:每一行都是一个有效的 json,并且单个文件中有 json 列表。我需要的是解析每个 json 并在每一行中打印它。使用 bean 类会起作用吗?

{"Atlas":{"location":"lille","lat":28.4,"long":51.7,"country":"FR"}}
{"Atlas":{"location":"luxum","lat":24.1,"long":54.7,"country":"LU"}}
{"Atlas":{"location":"ghent","lat":28.1,"long":50.1,"country":"BE"}}
{"Atlas":{"location":"alborg","lat":23.4,"long":53.7,"country":"DN"}}

感谢您的帮助!

4

3 回答 3

1

JSON 应该有一个根节点。

如果没有,您可以逐行读取文件,并将每一行传递到JSONParser包裹在 a 中StringReader(因为该JSONParser.parse()方法采用 a Reader)。

例如

   BufferedReader in
      = new BufferedReader(new FileReader("test.json"));
   while(!done) {
      String s = in.readLine();
      if (s == null) {
         done = true;
      }
      else {
         StringReader sr = new StringReader(s);
         // etc...
      }
   }

编辑:我假设您正在使用JSONParser。如果您使用不同的解析器(哪个?),那么它可能需要一个String参数。

于 2012-08-01T07:55:00.880 回答
0

JSONParser.parse()也将 String 作为 aurgument。

使用 FileReader 读取文件,并为您读取的每一行使用JSONParser.parse(String)方法。

于 2012-08-01T08:00:41.400 回答
0

首先:确保您已经为头文件中具有字符串属性并在实现文件中合成的每一行的子项创建了一个类。然后在实现文件中创建一个将进行解析的属性数组.在解析文件中..在您的检索数据方法中使用 NSJSONSerialization:

-(void)retrieveData{

    NSURL * url =[NSURL URLWithString:getDataURL];
    NSData *data =[NSData dataWithContentsOfURL:url];

    json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil];
    newsArray = [[NSMutableArray alloc]init];

    for (int i = 0; i < json.count; i++){
        {
            NSString * cID =[[json objectAtIndex:i]objectForKey:@"Name1"];
            NSString * cName = [[json objectAtIndex:i]objectForKey:@"name2"];
            NSString * cState =[[json objectAtIndex:i]objectForKey:@"name3"];
            NSString * cPopulation =[[json objectAtIndex:i]objectForKey:@"Edition"];
            NSString * cCountry =[[json objectAtIndex:i]objectForKey:@"name4"];
City *myCity = [[City alloc]initWithCityID:cID andCityName:cName andCityState:cState andCityPopulation:cPopulation andCityCountry:cCountry];
            [newsArray addObject:myCity];
        }
        [self.myTableView reloadData];
    }    
}

然后检索子对象或数组并在名称 1 名称 2 部分中输入它们以将它们解析到您的表中。此外,请确保您已经设置了您的表并为其分配了一个单元格标识符并索引到行。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
     //static NSString *strIdentifier=@"identity";
    static NSString *cellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if(cell == nil){
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier];
    }
   // cell.textLabel.text = [NSString stringWithFormat:@"Cell %d",indexPath.row];

    City *currentCity =[newsArray objectAtIndex:indexPath.row];
    cell.textLabel.text = currentCity.Name1;
    cell.detailTextLabel.text = currentCity.Name2;

    return cell;

}
于 2015-07-23T01:29:36.023 回答