- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从字典中解析日期字符串,可能格式无效。所以我循环字典并尝试在 @try @catch 中使用 DateFormatter.dateFromString 解析它们。
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"dd-MMM-yyyy"];
for(NSDictionary *mainSettlementData in mainSettlementDataList){
NSString *dateString = [mainSettlementData objectForKey:@"settlementDate1"];
if(dateString){
NSLog(@"1");
NSLog(@"dateString = %@", dateString);
@try{
NSDate *settlementDate = [dateFormatter dateFromString:dateString];
NSLog(@"converted NSDate = %@", settlementDate);
}
@catch(NSException *e){
NSLog(@"Error parsing settlementDate : %@", e.description);
}
NSLog(@"2");
}
else{
NSLog(@"3");
}
}
NSLog(@"Finish Loading Date");
NSLog 的结果是好的,直到输入的格式无效
2015-08-01 17:42:37.080 TrinityBackOffice[878:132472] 1
2015-08-01 17:42:37.081 TrinityBackOffice[878:132472] dateString = 05-Aug-2014
2015-08-01 17:42:37.084 TrinityBackOffice[878:132472] converted NSDate = 2014-08-04 17:00:00 +0000
2015-08-01 17:42:37.084 TrinityBackOffice[878:132472] 2
2015-08-01 17:42:37.084 TrinityBackOffice[878:132472] 1
2015-08-01 17:42:37.084 TrinityBackOffice[878:132472] dateString = 02-Oct-2012
2015-08-01 17:42:37.084 TrinityBackOffice[878:132472] converted NSDate = 2012-10-01 17:00:00 +0000
2015-08-01 17:42:37.085 TrinityBackOffice[878:132472] 2
2015-08-01 17:42:37.085 TrinityBackOffice[878:132472] 1
2015-08-01 17:42:37.085 TrinityBackOffice[878:132472] dateString = 05-Aug-2014
2015-08-01 17:42:37.085 TrinityBackOffice[878:132472] converted NSDate = 2014-08-04 17:00:00 +0000
2015-08-01 17:42:37.085 TrinityBackOffice[878:132472] 2
2015-08-01 17:42:37.085 TrinityBackOffice[878:132472] 1
2015-08-01 17:42:37.086 TrinityBackOffice[878:132472] dateString = 05-Aug-2014
2015-08-01 17:42:37.086 TrinityBackOffice[878:132472] converted NSDate = 2014-08-04 17:00:00 +0000
2015-08-01 17:42:37.086 TrinityBackOffice[878:132472] 2
2015-08-01 17:42:37.087 TrinityBackOffice[878:132472] 1
2015-08-01 17:42:37.088 TrinityBackOffice[878:132472] dateString = <null>
2015-08-01 17:42:37.088 TrinityBackOffice[878:132472] -[NSNull length]: unrecognized selector sent to instance 0xbabb48
2015-08-01 17:42:37.088 TrinityBackOffice[878:132472] Error parsing settlementDate : -[NSNull length]: unrecognized selector sent to instance 0xbabb48
2015-08-01 17:42:37.089 TrinityBackOffice[878:132472] 2
2015-08-01 17:42:37.089 TrinityBackOffice[878:132472] 1
2015-08-01 17:42:37.089 TrinityBackOffice[878:132472] dateString = 02-Oct-2012
然后记录停止,应用卡住。最后一条日志 NSLog(@"Finish Loading Date");永远不要打印出来。请注意,我在应用程序的第一个 ViewController 的 viewDidLoad 中执行此操作,因此应用程序会卡住在初始屏幕页面上。
另请注意,如果字典中没有无效的日期字符串,则该应用程序可以正常运行。如果我删除行
NSDate *settlementDate = [dateFormatter dateFromString:dateString];
该应用也运行良好。
请帮忙,谢谢!
附言。如果您想拥有数据源,请点击此处。
NSData *data =
[@"{\"asOfDate\":\"23-Jul-2015\",\"portfolioData\":[{\"costValue\":11464.614,\"accountID\":\"99-91418-4\",\"mktValue\":10800,\"unrealizedAmt\":-664.61},{\"costValue\":0,\"accountID\":\"999-091418-0-3\",\"mktValue\":0,\"unrealizedAmt\":46600}],\"settlementData\":[{\"settlementDate2\":null,\"accountID\":\"99-00427-1\",\"netAmount3\":0,\"bankSym\":\"BBL\",\"settlementDate1\":\"05-Aug-2014\",\"netAmount1\":0,\"netAmount2\":0,\"bankAcc\":\"1310689722\",\"settlementDate3\":null},{\"settlementDate2\":\"05-Aug-2014\",\"accountID\":\"99-00427-4\",\"netAmount3\":3075.06,\"bankSym\":\"BBL\",\"settlementDate1\":\"02-Oct-2012\",\"netAmount1\":-86858.6,\"netAmount2\":-13096.74,\"bankAcc\":\"1310689722\",\"settlementDate3\":\"07-Aug-2014\"},{\"settlementDate2\":\"06-Aug-2014\",\"accountID\":\"99-00427-0\",\"netAmount3\":-226381.6,\"bankSym\":\"BBL\",\"settlementDate1\":\"05-Aug-2014\",\"netAmount1\":-442746.3,\"netAmount2\":323452.94,\"bankAcc\":\"1310689722\",\"settlementDate3\":\"07-Aug-2014\"},{\"settlementDate2\":\"06-Aug-2014\",\"accountID\":\"99-00427-0\",\"netAmount3\":-226381.6,\"bankSym\":\"BBL\",\"settlementDate1\":\"05-Aug-2014\",\"netAmount1\":-442746.3,\"netAmount2\":323452.94,\"bankAcc\":\"1310689722\",\"settlementDate3\":\"07-Aug-2014\"},{\"settlementDate2\":null,\"accountID\":\"99-00427-1\",\"netAmount3\":0,\"bankSym\":\"BBL\",\"settlementDate1\":null,\"netAmount1\":0,\"netAmount2\":0,\"bankAcc\":\"1310689722\",\"settlementDate3\":null},{\"settlementDate2\":\"05-Aug-2014\",\"accountID\":\"99-00427-4\",\"netAmount3\":3075.06,\"bankSym\":\"BBL\",\"settlementDate1\":\"02-Oct-2012\",\"netAmount1\":-86858.6,\"netAmount2\":-13096.74,\"bankAcc\":\"1310689722\",\"settlementDate3\":\"07-Aug-2014\"}],\"transactionStatus\":[]}" dataUsingEncoding:NSUTF8StringEncoding];
NSError *myError = nil;
NSDictionary *responseDictionary = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:&myError];
NSArray *mainSettlementDataList = [responseDictionary objectForKey:@"settlementData"];
最佳答案
settlementDate1
中的数据返回空值,因此您检查条件日期是否不为空,然后设置日期格式。
你试试这段代码:
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"dd-MMM-yyyy"];
for(NSDictionary *mainSettlementData in mainSettlementDataList){
NSString *dateString = [mainSettlementData objectForKey:@"settlementDate1"];
if(![dateString isEqual:[NSNull null]]){
NSLog(@"1");
NSLog(@"dateString = %@", dateString);
NSDate *settlementDate = [dateFormatter dateFromString:dateString];
NSLog(@"converted NSDate = %@", settlementDate);
}
else{
NSLog(@"3");
}
}
NSLog(@"Finish Loading Date");
或者使用这个条件来检查空值
if(dateString!=nil && ![dateString isEqualToString:@"null"] && dateString!=(id)[NSNull null]){
// value
}else{
// null value
}
关于ios - NSDateFormatter.dateFromString for 循环,用@try处理无效格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31761043/
我刚刚遇到了一个非常奇怪的行为。这是代码: // So far everything's fine val x: Try[Try[Unit]] = Try(Try{}) x: scala.util.T
“输出”是一个序列化的 OpenStruct。 定义标题 try(:output).try(:data).try(:title) 结束 什么会更好? :) 最佳答案 或者只是这样: def title
我有以下元组 - (t1,t2) :(Try,Try) 我想检查两者是否成功或其中之一是否失败,但避免代码重复。像这样的东西: (t1,t2) match { case (Success(v1),Su
是否必须放置内部 try-with-resources 或其中一个 try-with-resources 中的所有内容都会自动关闭? try (BasicDataSource ds = Bas
有一点特殊,尝试创建一段 try catch 代码来处理 GoogleTokenResponse,但编译器在 try 时抛出异常错误。有什么想法吗? 错误信息: | Loading Grails 2.
它几乎可以在所有语言中找到,而且我大部分时间都在使用它。 我不知道它是内部的,不知道它是如何真正起作用的。 它如何在任何语言的运行时在 native 级别工作? 例如:如果在 try 内部发生 sta
为什么在 readFile2() 中我需要捕获 FileNotFoundException 以及稍后由 close( ) 方法,并且在 try-with-resources(inside readfi
我正在使用 Apache POI 尝试读取 Word 文件,但即使您使用过 Apache POI,这仍然应该是可以回答的。在 HWPF.extractor 包中有两个对象:WordExtractor
如果try-catch的catch block 中抛出异常,那么finally block 会被调用吗? try { //some thing which throws error } cat
这个问题已经有答案了: What's the purpose of try-with-resources statements? (7 个回答) 已关闭 3 年前。 我一直在查看代码,并且已经看到了对
这个问题已经有答案了: What's the purpose of try-with-resources statements? (7 个回答) 已关闭 3 年前。 我一直在查看代码,并且已经看到了对
我正在使用 Try::Tiny尝试捕捉。 代码如下: use Try::Tiny; try { print "In try"; wrongsubroutine(); # undefi
我想知道这样的代码是否会在抛出异常后总是中断而不继续运行,因此代码不会继续执行第二个 temp.dodaj(b)。 Avto *a = new Avto("lambo",4); Avt
我知道在try子句中必须有一个与资源关联的变量声明。 但是除了被分配一个通常的资源实例化之外,它是否可以被分配一个已经存在的资源,例如: public String getAsString(HttpS
我有一个写的方法。此方法仅扫描用户输入的整数输入。如果用户输入一个字符值,它将抛出一个输入不匹配异常,这是在我的 Try-Catch 语句中处理的。问题是,如果用户输入任何不是数字的东西,然后抛出异常
我注意到这不会编译: PrintWriter printWriter = new PrintWriter("test.txt"); printWriter.append('a'); printWrit
我经常看到人们写这样的代码: try: some_function() except: print 'something' 当我认为这样做更干净时: try: some_functio
该应用程序将在第二个显示器上正常显示内容。问题是当我旋转 iPad 时内容不会在 iPad 上旋转。 看过: http://developer.apple.com/library/ios/#qa/qa
我正在学习 java,我发现我不喜欢的一件事通常是当我有这样的代码时: import java.util.*; import java.io.*; public class GraphProblem
我使用 C++ 有一段时间了,对普通的 try/catch 很熟悉。但是,我现在发现自己在 Windows 上,在 VisualStudio 中编码以进行 COM 开发。代码的几个部分使用了如下内容:
我是一名优秀的程序员,十分优秀!