ToDate函数的用法

时间:2015-05-29 06:07:22

标签: apache-pig to-date

我想将 [UIView animateWithDuration:0.1 animations:^{ CGRect frame = self.tableView.frame; frame.size.height = 100.0; // expected height self.tableView.frame = frame; }]; 转换为日期,因此我打算使用userinput:chararray函数。我搜索了论坛,看看有没有人使用它,但我不确定是否需要注册像piggybank.jar这样的功能来使用它。我的猪版本是0.14。

请告知

1 个答案:

答案 0 :(得分:1)

参考:http://pig.apache.org/docs/r0.12.0/func.html#to-date

它是一个内置函数,你不需要注册任何jar。有4个重载的ToDate()函数

  1. TODATE(毫秒)

  2. TODATE(iosstring)

  3. ToDate(userstring,format)

  4. ToDate(userstring,format,timezone)

  5. 对于您的用例#3或#4会有帮助。