来自json响应的DOB格式并在EDITTEXT中设置

时间:2016-05-26 10:48:44

标签: android json simpledateformat

  • 我从这样的json响应中获取DOB:

    1281990

  • 我想像这样格式化它

    1990年12月8日

  • 我的尝试:

public function generateFileName( $fileName ) {
    // Start with source filename
    $new = $fileName;
    while( $this->Tasks->checkFileName( $new ) ) {
        // If file exist try new prefix
        $prefix = rand(1, 1000);
        $new = $prefix . '_' . $fileName;
    }
    return $new;
}

0 个答案:

没有答案