java现实今年年份代码 java年龄( 三 )


---------------------------------------------------
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
日 一 二 三 四 五 六 第8月
---------------------------------------------------
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
日 一 二 三 四 五 六 第9月
---------------------------------------------------
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30
日 一 二 三 四 五 六 第10月
---------------------------------------------------
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
日 一 二 三 四 五 六 第11月
---------------------------------------------------
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30
日 一 二 三 四 五 六 第12月
---------------------------------------------------
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31
java输出当前年份public class DF {public static void main(String[] args) {System.out.println(new java.text.SimpleDateFormat("今天是: yyyy-MM-dd E",java.util.Locale.CHINA).format(new java.util.Date()));}}
//就一行程序,输出: 今天是: 2008-12-02 星期二,这分要不给我没天理了~~
求Java万年历源代码!!!我有个JS的要么?
你可以把他改下我是没时间帮你该哈?。。?
!--日期框选择--
var DS_x,DS_y;
function dateSelector()//构造dateSelector对象,用来实现一个日历形式的日期输入框 。
{
var myDate=new Date();
this.year=myDate.getFullYear();//定义year属性 , 年份 , 默认值为当前系统年份 。
this.month=myDate.getMonth()+1;//定义month属性 , 月份 , 默认值为当前系统月份 。
this.date=myDate.getDate();//定义date属性,日,默认值为当前系统的日 。
this.inputName='';//定义inputName属性 , 即输入框的name,默认值为空 。注意:在同一页中出现多个日期输入框 , 不能有重复的name!
this.display=display;//定义display方法 , 用来显示日期输入框 。
}
function display()//定义dateSelector的display方法,它将实现一个日历形式的日期选择框 。
{
var week=new Array('日','一','二','三','四','五','六');
document.write("style type=text/css");
document.write(".ds_font td,span{ font: normal 12px 宋体; color: #000000; }");
document.write(".ds_border{ border: 1px solid #000000; cursor: hand; background-color: #DDDDDD }");
document.write(".ds_border2{ border: 1px solid #000000; cursor: hand; background-color: #DDDDDD }");
document.write("/style");
var M=new String(this.month);
var d=new String(this.date);
if(M.length==1d.length==1){
document.write("input style='text-align:center;' id='DS_"+this.inputName+"' name='"+this.inputName+"' value='"+this.year+"-0"+this.month+"-0"+this.date+"' title=双击可进行编缉 ondblclick='this.readOnly=false;this.focus()' onblur='this.readOnly=true' readonly");}
else if(M.length==1d.length==2){
document.write("input style='text-align:center;' id='DS_"+this.inputName+"' name='"+this.inputName+"' value='"+this.year+"-0"+this.month+"-"+this.date+"' title=双击可进行编缉 ondblclick='this.readOnly=false;this.focus()' onblur='this.readOnly=true' readonly");}
else if(M.length==2d.length==1){
document.write("input style='text-align:center;' id='DS_"+this.inputName+"' name='"+this.inputName+"' value='"+this.year+"-"+this.month+"-0"+this.date+"' title=双击可进行编缉 ondblclick='this.readOnly=false;this.focus()' onblur='this.readOnly=true' readonly");}

推荐阅读