JSP获取服务器时间代码
新手学习JSP,求一小段代码,越简单越好,我用的是DW+TOMCAT,只要能获得服务器时间并显示在页面上就可以了,百度了很久各种行不通,请高人指点..最好这样显示“XXX...
新手学习JSP,求一小段代码,越简单越好,我用的是DW+TOMCAT,只要能获得服务器时间并显示在页面上就可以了,百度了很久各种行不通,请高人指点..
最好这样显示“XXXX年XX月XX号X时X分X秒”秒针最好还在跟着服务器时间一起走..
三楼能不能给出个其他的输出方式,不太想要文本域..感觉是个不专业的人做的网站虽然我本来就不专业,但我们也要装的专业点嘛...都懂的... 展开
最好这样显示“XXXX年XX月XX号X时X分X秒”秒针最好还在跟着服务器时间一起走..
三楼能不能给出个其他的输出方式,不太想要文本域..感觉是个不专业的人做的网站虽然我本来就不专业,但我们也要装的专业点嘛...都懂的... 展开
3个回答
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>获取当前时间</title>
</head>
<script language="JavaScript">
var timerID = null;
var timerRunning = false;
function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function startclock () {
stopclock();
showtime();
}
function showtime () {
var now = new Date();
var year = now.getYear();
var month = now.getMonth() + 1;
var date = now.getDate();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
var timeValue = year ;
timeValue += ((month < 10) ? "年0" : "年") + month;
timeValue += ((date < 10) ? "月0" : "月") + date;
timeValue += ((hours < 10) ? "号 0" : "号 ") + hours;
timeValue += ((minutes < 10) ? "时0" : "时") + minutes;
timeValue += ((seconds < 10) ? "分0" : "分") + seconds +"秒";
document.clock.thetime.value = timeValue;
timerID = setTimeout("showtime()",1000);
timerRunning = true;
}
</script>
<body onload="startclock()">
<form name=clock >
<input name="thetime" style="font-size: 9pt;color:#000000;border:0" size="30"/>
</form>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>获取当前时间</title>
</head>
<script language="JavaScript">
var timerID = null;
var timerRunning = false;
function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function startclock () {
stopclock();
showtime();
}
function showtime () {
var now = new Date();
var year = now.getYear();
var month = now.getMonth() + 1;
var date = now.getDate();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
var timeValue = year ;
timeValue += ((month < 10) ? "年0" : "年") + month;
timeValue += ((date < 10) ? "月0" : "月") + date;
timeValue += ((hours < 10) ? "号 0" : "号 ") + hours;
timeValue += ((minutes < 10) ? "时0" : "时") + minutes;
timeValue += ((seconds < 10) ? "分0" : "分") + seconds +"秒";
document.clock.thetime.value = timeValue;
timerID = setTimeout("showtime()",1000);
timerRunning = true;
}
</script>
<body onload="startclock()">
<form name=clock >
<input name="thetime" style="font-size: 9pt;color:#000000;border:0" size="30"/>
</form>
</body>
</html>
展开全部
Date data= new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd-hh-mm-ss");
String dataStr=sdf.format(data);
其中,dataStr即为你所要的服务器时间代码,还有问题的话补充回答
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd-hh-mm-ss");
String dataStr=sdf.format(data);
其中,dataStr即为你所要的服务器时间代码,还有问题的话补充回答
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
ASP就有,JSP不懂
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询