gpt4 book ai didi

objective-c - 我该如何在 cocoa 中处理这个问题?从 plist 文件中检索条目?

转载 作者:行者123 更新时间:2023-12-03 17:56:12 28 4
gpt4 key购买 nike

我有巴西政府机构提供的这个小 Excel 文件,其中包含巴西每个城市的记录、每个城市的邮政编码范围及其“城市代码”。

我需要检索给定城市的“城市代码”。

我想最好的方法是解析给定的城市邮政编码,并根据显示邮政编码范围的前两列返回其“城市代码”。

我确信使用 AppleScript 我可以为给定的 Excel 文件编译 plist 文件。但是有人可以指点我几行 ObjectiveC 代码,以便在我解析邮政编码后从 plist 文件中检索给定的条目吗?

请参阅 Excel 文件 http://www.idanfe.com/dl/codes.xls.zip

谢谢。

我已将示例 plist 文件上传到 http://www.idanfe.com/dl/cityCodes.plist

进一步说明:

我将解析邮政编码值,例如:01123010,其范围在 01001000 和 05895490 之间,因此我的例程应返回城市代码 = 3550308 和城市名称 = 圣保罗。

我不知道如何实现这一点,我可能构建了错误的示例 plist。

我有信心可以使用 AppleScript 构建 plist 文件,并从 Excel 工作表中读取内容。

但是检索给定邮政编码范围的城市代码是一个难题。

+++ 编辑:+++

我想我已经解决了这个问题,但它看起来有点笨拙,就像我写的几乎所有内容一样。

此 AppleScript 读取 Excel 工作表并写入 plist 文件:http://www.idanfe.com/dl/creating.scpt.zip

在这里您可以找到 1 MB plist 文件:http://www.idanfe.com/dl/cityCodes.plist.zip

这是我为获取所需的城市代码而编写的代码:

NSString *zipCodeString;
zipCodeString = @"99990000";

NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"cityCodes" ofType:@"plist"];
NSDictionary *cityCodes_dictionary = [NSDictionary dictionaryWithContentsOfFile:plistPath];
NSArray *allKeys = [cityCodes_dictionary allKeys];

int i = 0;
for (i = 0 ; i <= [allKeys count]; i++) {
NSString *someKey = [allKeys objectAtIndex:i];
NSRange range08 = NSMakeRange (0, 8);
NSRange range88 = NSMakeRange (8, 8);
NSString *startZipCode = [someKey substringWithRange:range08];
NSString *finalZipCode = [someKey substringWithRange:range88];
int startZipCodeInt = [startZipCode intValue];
int finalZipCodeInt = [finalZipCode intValue];

if(startZipCodeInt <= [zipCodeString intValue] && finalZipCodeInt >= [zipCodeString intValue]){
NSLog(@"we found a winner");
NSString *cityCode = [NSString stringWithFormat: @"%@",[[cityCodes_dictionary objectForKey:someKey]objectForKey:@"City Code"]];

[cityCodeIBGEField setStringValue:cityCode];
NSLog(@"cityCode = %@",cityCode);
break;
} else {
// NSLog(@"no winners");
}
}

基本上,我将起始邮政编码和最终邮政编码附加到一个 16 位数字的字符串中,因此我在 plist 文件中创建一条记录。

然后,在搜索城市代码时,我将长键(2 个邮政编码)分解为 2(返回正常的邮政编码),然后搜索以查看哪条记录符合我需要城市代码的给定邮政编码。

有些对我来说看起来不是最好的,但令我自己惊讶的是,代码非常快,尽管是在循环中。

非常感谢您的评论...

谢谢

最佳答案

我会使用indexOfObjectPassingTest: 来进行这种搜索。像这样的事情:

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {

NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"cityCodes" ofType:@"plist"];
self.cityCodes_dictionary = [NSDictionary dictionaryWithContentsOfFile:plistPath];
[self findCityWithZip:@"01123010"];
}

-(void)findCityWithZip:(NSString *) searchZip {
NSUInteger indx = [self.cityCodes_dictionary.allKeys indexOfObjectPassingTest:^BOOL(NSString *zip, NSUInteger idx, BOOL *stop) {
NSString *startZipCode = [zip substringWithRange:NSMakeRange(0, 8)];
NSString *finalZipCode = [zip substringWithRange:NSMakeRange(8, 8)];
return (searchZip.integerValue < finalZipCode.integerValue && searchZip.integerValue > startZipCode.integerValue);
}];
NSLog(@"%@",[self.cityCodes_dictionary valueForKey:[self.cityCodes_dictionary.allKeys objectAtIndex:indx]]);
}

关于objective-c - 我该如何在 cocoa 中处理这个问题?从 plist 文件中检索条目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12975558/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com