2014年1月10日 星期五

Calendar get Date (timeStamp long to string)

private String getDate(long timeStamp){

    try{
        DateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
        Date netDate = (new Date(timeStamp));
        return sdf.format(netDate);
    }
    catch(Exception ex){
        return "xx";
    }
} 

沒有留言:

張貼留言

Related Posts Plugin for WordPress, Blogger...