我想从以下网站阅读我的应用程序中的Dbx文件。
http://www.weather.gov/geodata/catalog/wsom/data/bp03my11.dbx
我该怎么做?
任何建议或任何示例源代码
答案 0 :(得分:0)
因为“dbx”文件的格式与CSV类似(逗号分隔值) 你可以找到解析CSV的代码并将管道符号(“|”)作为你的分隔符
以下链接是关于换行符值分隔值的示例 http://www.iphonedevsdk.com/forum/iphone-sdk-game-development/13753-tutorial-quiz-game.html#post64855
你的尝试是分开第一次和第二次分裂|并将其填充到NSArray / NSMutableArray / NSDictionary
中对于网址,您可以访问它:
NSError* error;
NSString* text = [NSString stringWithContentsOfURL:TheUrl encoding:NSASCIIStringEncoding error:&error];
请参阅:What is the "stringWithContentsOfURL" replacement for objective C?
或使用ASIHTTPRequest来简化步骤 http://allseeing-i.com/ASIHTTPRequest/