显示中国人喜欢的日期

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        Date date=new Date();
        String str=format.format(date);
        System.out.println(str);
    }

2016-06-23 10:49:32

相关文章:

  • 2022-12-23
  • 2021-08-16
  • 2022-01-04
  • 2022-02-19
  • 2022-12-23
  • 2021-06-15
猜你喜欢
  • 2021-12-22
  • 2022-12-23
  • 2021-08-02
  • 2021-10-18
  • 2021-12-11
  • 2021-09-02
  • 2021-07-17
相关资源
相似解决方案