在Java中以s格式格式化秒
秒的“s”格式类似于表示1、2、3、4秒等。我们将像这样使用它。
SimpleDateFormat("s");让我们看一个例子-
//以s格式显示秒
simpleformat = new SimpleDateFormat("s");
String strSeconds = simpleformat.format(new Date());
System.out.println("Seconds in s format = "+strSeconds);上面,我们使用了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);
//以s格式显示秒
simpleformat = new SimpleDateFormat("s");
String strSeconds = simpleformat.format(new Date());
System.out.println("Seconds in s format = "+strSeconds);
}
}输出结果
Date and time = Mon, 26 Nov 2018 10:49:32 Current Date = 26/November/2018 Current Time = 10.49.32 Seconds in s format = 32
热门推荐
10 毛笔哥哥结婚祝福语简短
11 向国庆送祝福语简短
12 建队节祝福语简短
13 朋友喜得外孙简短祝福语
14 小店营业的祝福语简短
15 餐饮生日祝福语简短独特
16 鲜花英语祝福语卡片简短
17 男朋友暴富祝福语简短
18 婶婶拜年祝福语大全简短