日期格式化

import java.text.*;

import java.util.*;

public class SimpleDateFormatTest {

    public static void main(String[] args) {

        SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");

        

        Date d = new Date();

        String _currentDate=sdf.format(d);

        System.out.println(_currentDate);

    }

}

 

你可能感兴趣的:(日期格式化)