在Java中以mm格式格式化分钟
“ mm”格式用于格式化分钟,即01、02、03、04等。在这里,我们将使用以下格式-
SimpleDateFormat("mm");
让我们看一个例子-
//以毫米格式显示分钟SimpleDateFormat simpleformat = new SimpleDateFormat("mm");
String strMinute = simpleformat.format(new Date());
System.out.println("Minutes in mm format = "+strMinute);
上面,我们使用了SimpleDateFormat类,因此导入了以下包-
import java.text.SimpleDateFormat;
以下是一个例子-
示例
import java.text.Format;import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Calendar;
public class Demo {
public static void main(String[] args) throws Exception {
//显示当前日期和时间
Calendar cal = Calendar.getInstance();
SimpleDateFormat simpleformat = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss");
System.out.println("Date and time = "+simpleformat.format(cal.getTime()));
//显示日期
simpleformat = new SimpleDateFormat("dd/MMMM/yyyy");
String str = simpleformat.format(new Date());
System.out.println("Current Date = "+str);
//当前时间
simpleformat = new SimpleDateFormat("HH.mm.ss");
String strTime = simpleformat.format(new Date());
System.out.println("Current Time = "+strTime);
//以毫米格式显示分钟
simpleformat = new SimpleDateFormat("mm");
String strMinute = simpleformat.format(new Date());
System.out.println("Minutes in mm format = "+strMinute);
}
}
输出结果
Date and time = Mon, 26 Nov 2018 10:27:26Current Date = 26/November/2018
Current Time = 10.27.26
Minutes in mm format = 27
以上是 在Java中以mm格式格式化分钟 的全部内容, 来源链接: utcz.com/z/316445.html