解析约会
当输入类型为 String
并且需要将其作为 Date
时,将使用解析日期。TalendDate
类包含方法 TalendDate.parseDate("pattern","stringDate")
。
这里的模式是输入模式,而不是预期的输出模式。
用法:对于像 2017-05-03 17:09:00
这样的输入字符串,调用将是:
TalendDate.parseDate("yyyy-MM-dd HH:mm:ss","2017-05-03 17:09:00")
结果可能是这样的日期:
2017-05-03 17:09:00
要么
03/05/2017
取决于在 parseDate 方法之外定义的输出模式。