您的位置:

java中时间格式化输出(java 当前时间格式化)

本文目录一览:

Java 使用Formatter类格式化输出日期时间

public class DateFormatDemo {public static void main(String[] args) throws ParseException {// 创建日期对象Date d = new Date();// 给定模式SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");// public final String

java中时间格式化输出

使用SimpleDateFormat即可,代码如下

import java.text.ParseException;

import java.text.SimpleDateFormat;

import java.util.Date;

public class DateUtil {

    

    public static  String formatDate(Date date)throws ParseException{

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

        return sdf.format(date);

    }

    

    public static Date parse(String strDate) throws ParseException{

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

        return sdf.parse(strDate);

    }

}

java中,Date如何格式化为“yyyy-MM-dd”格式Date,并可按需求格式输出!(java.util.Date)

SimpleDateFormat dateFormat2=new SimpleDateFormat("yyyy-MM-dd");

System.out.println(dateFormat2.format(date));

如何输出格式化时间

利用java里的Date类输出,进阶的做法还可以用simpleDateformat类进行格式化输出日期。代码如下:import java.text.SimpleDateFormat;import java.util.Date;/** * 日期格式化 * @author young * */public class SimpleDateFormatTest {public static void main(String[] args) {// 在构造器中传入日期样式// SimpleDateFormat sdf=new SimpleDateFormat(// "yyyy.MM.dd G 'at' HH:mm:ss z");SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");// sdf=new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒");// 当前系统时间Date date = new Date();// 调用format(Date date)对象传入的日期参数进行格式化// format(Date date)将日期转化成字符串String formatDate = sdf.format(date);System.out.println("格式化后的日期为:" + formatDate);}}。

java中怎么格式化日期??

你可以用String类的format方法,例如: System.out.println(String.format("%ty年%tm月%td日",date));下面是一个完整的例子。

public class FormatDateTest

{

    public static void main(String[] args)

    {

        Date date = new Date(System.currentTimeMillis());

        System.out.println(String.format("%ty年%tm月%td日",date));

        System.out.println(String.format("%tY年%tm月%td日",date));

        System.out.println(String.format("%tY年%tm月%td日%tH时%tM分%tS秒",date));

    }

}

%ty是格式化年,%tm是格式化年,%td是格式化天,%tH格式化发时,%tM格式化分,%tS格式化秒。另外%tY是把年格式化为四位形式,如1999,而不是99。%tI是把时格式化为12小时制。格式化字符串中的是表示格式化同一个日期,当然你也可以这么写: System.out.println(String.format("%ty年%tm月%td日",date,date,date));