JAVA中如何以(MMM)格式显示一个月份的名称
此示例显示如何使用Calender类的Calender.getInstance()方法和Formatter类的fmt.format()方法来显示(MMM)格式的月份名称。
package com.yiibai;
import java.util.Calendar;
import java.util.Formatter;
public class DateTimeMonth {
public static void main(String args[]) {
Formatter fmt new Formatter();
Calendar cal Calendar.getInstance();
fmt new Formatter();
fmt.format("%tB %tb %tm", cal, cal, cal);
System.out.println(fmt);
}
}
Java
执行上面示例代码得到以下结果 -
九月 九月 09
Shell
示例2
月份格式化的另一个示例示例 -
package com.yiibai;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
public class DateTimeMonth2 {
public static void main(String[] args) {
SimpleDateFormat f new SimpleDateFormat("MMM");
SimpleDateFormat f1 new SimpleDateFormat("dd");
SimpleDateFormat f2 new SimpleDateFormat("a");
int h;
if (Calendar.getInstance().get(Calendar.HOUR) 0)
h 12;
else
h Calendar.getInstance().get(Calendar.HOUR);
String filename "Current Date is :" f.format(new Date())
f1.format(new Date()) "日" h "时" f2.format(new Date());
System.out.println(filename);
}
}
Java
执行上面示例代码得到以下结果 -
Current Date is :九月15日6时上午
Java如何以短格式显示月份
在Java中,如何显示短格式的月份名称? 使用DateFormatSymbols().DateFormatSymbols类的getShortMonths()方法,本示例显示了几个月的简写名称. pac ...
一个空格也可以让html格式显示大不相同
今天在编写html时出现了bug,有两个标签一直贴近显示,但是两段代码完全一样前一段就没有问题. 错误代码如下
hdu 1212 Big Number
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid1212 Big Number Description As we know, Big Number is ...
cocos2d-x 开启深度测试验 实现 遮挡
CCDirector::sharedDirector()->setDepthTest(true); spr->setVertexZ(xxx);
fedora下缺少autopoint包的解决办法
编译过程中,报错,缺少autopoint包 然而无论是yum install autopoint 还是yum search autopoint都没有理想的答案 执行yum install gettex ...
Qt浅谈之三十九圆形进度条(已经有50篇了)
http://blog.csdn.net/taiyang1987912/article/category/2314763
听翁恺老师mooc笔记(3)--指针的定义
在上一个blog学习了1
JDBC 增、改、删 MySQL中的表
在数据库test里先创建表school,内容如下 通过JDBC增加第五人tom,修改他的生日,最后删除tom import java.sql.Connection; import java.sql.D ...