java中ss_在Java中以ss格式显示秒(01,02)

本文介绍如何使用Java的SimpleDateFormat类来格式化日期和时间,包括显示当前日期、时间及秒数的具体方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

秒的ss格式类似于表示秒01、02、03、04等。我们将像这样使用它。SimpleDateFormat("ss");

让我们看一个例子-//以ss格式显示秒

simpleformat = new SimpleDateFormat("ss");

String strSeconds = simpleformat.format(new Date());

System.out.println("Seconds in ss 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);

//以ss格式显示秒

simpleformat = new SimpleDateFormat("ss");

String strSeconds = simpleformat.format(new Date());

System.out.println("Seconds in ss format = "+strSeconds);

}

}

输出结果Date and time = Mon, 26 Nov 2018 10:53:04

Current Date = 26/November/2018

Current Time = 10.53.04

Seconds in ss format = 04

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值