0
我想通過實時鏈接解析csv數據並將其轉換爲NSMutabledictionary.Here是我用於csv文件的鏈接。如何將csv文件數據轉換爲NSMutabledictionary
http://ichart.yahoo.com/table.csv?s=BAS.DE&d=2&e=30&c=2012
請幫我出的一樣。
在此先感謝。
我想通過實時鏈接解析csv數據並將其轉換爲NSMutabledictionary.Here是我用於csv文件的鏈接。如何將csv文件數據轉換爲NSMutabledictionary
http://ichart.yahoo.com/table.csv?s=BAS.DE&d=2&e=30&c=2012
請幫我出的一樣。
在此先感謝。
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];
http://stackoverflow.com/questions/3344628/where-can-i-find-a-csv -to-nsarray-parser-for-objective-c/3380724#3380724 ..瀏覽此文章 – Nit