Android时间戳的转换

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
                                      

public class DateUtils {
                                          
    private SimpleDateFormat sf = null;
    /*获取系统时间 格式为:"yyyy/MM/dd "*/
    public static String getCurrentDate() {
        Date d = newDate();
         sf = newSimpleDateFormat("yyyy年MM月dd日");
        returnsf.format(d);
    }
                                      
    /*时间戳转换成字符窜*/
    public static String getDateToString(long time) {
        Date d = newDate(time);
        sf = newSimpleDateFormat("yyyy年MM月dd日");
        returnsf.format(d);
    }
                                      
    /*将字符串转为时间戳*/
    public static long getStringToDate(String time) {
        sdf = newSimpleDateFormat("yyyy年MM月dd日");
        Date date = newDate();
        try{
            date = sdf.parse(time);
        } catch(ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        returndate.getTime();
    }

评论