如何将csv文件数据转换为NSMutabledictionary

时间:2012-04-30 07:00:24

标签: iphone csv nsmutablearray

我想用实时链接解析csv数据并在NSMutabledictionary中转换它。这是我用于csv文件的链接。

http://ichart.yahoo.com/table.csv?s=BAS.DE&d=2&e=30&c=2012

请帮帮我。

提前致谢。

1 个答案:

答案 0 :(得分:1)

This链接应该包含您需要的内容。但是,您是否将该链接作为文件下载到您的应用程序目录中?如果是这样,导入parseCSV后,可以很容易地浏览csv文件的行:

CSVParser *parser = [CSVParser new];
NSString *csvFilePath = [[NSBundle mainBundle] pathForResource:@"myCsvFile" ofType:@"csv"];
[parser openFile:csvFilePath];
NSArray *csvContentArray = [parser parseFile];

for (int i=0; i<csvContentArray.count; i++)
    NSLog(@"parsed %d %@", i, [csvContentArray objectAtIndex:i]);

[parser closeFile];