黑马程序员技术交流社区
标题:
日历程序的一些小问题。
[打印本页]
作者:
qiubaoyang
时间:
2014-6-16 12:32
标题:
日历程序的一些小问题。
import java.text.DateFormatSymbols;
import java.util.*;
/**
* @version 1.4 2007-04-07
* @author Cay Horstmann
*/
public class CalendarTest
{
public static void main(String[] args)
{
// construct d as current date
// Locale.setDefault(Locale.ITALY);
GregorianCalendar d = new GregorianCalendar();
int today = d.get(Calendar.DAY_OF_MONTH);
int month = d.get(Calendar.MONTH);
// set d to start date of the month
d.set(Calendar.DAY_OF_MONTH, 1);
int weekday = d.get(Calendar.DAY_OF_WEEK);
// get first day of week (Sunday in the U.S.)
复制代码
最后的结果为什么是下面这个样子?
日历.png
(121.17 KB, 下载次数: 9)
下载附件
2014-6-16 12:31 上传
求哪位大神指教???
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2