在Java中以z格式显示TimeZone
z格式表示一般时区。我们将像这样使用它。
SimpleDateFormat("z");让我们看一个例子-
//以Z格式显示时区
SimpleDateFormat simpleformat = new SimpleDateFormat("z");
String strTimeZone = simpleformat.format(new Date());
System.out.println("TimeZone in z format = "+strTimeZone);上面,我们使用了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);
//以Z格式显示时区
simpleformat = new SimpleDateFormat("z");
String strTimeZone = simpleformat.format(new Date());
System.out.println("TimeZone in z format = "+strTimeZone);
}
}输出结果
Date and time = Mon, 26 Nov 2018 10:59:35 Current Date = 26/November/2018 Current Time = 10.59.35 TimeZone in z format = UTC
热门推荐
10 香港老妈结婚祝福语简短
11 毕业立体贺卡祝福语简短
12 简短新年年会祝福语
13 评论小品祝福语大全简短
14 恭喜师兄结婚祝福语简短
15 员工集体辞职祝福语简短
16 高中新生祝福语 简短
17 装修祝福语男生搞笑简短
18 生日开业蛋糕祝福语简短