<meta http-equiv="content-Type"Content="text/html;charset=utf-8">
<Meta http-equiv="refresh" Content="3" url="www.baidu.com">
<Meta name="Keywords" Content="JAVA,CSS,CSS3,HTML,等等"
1.代表是中文编码集。
2.代表的是3秒钟刷新这个页面,跳转到百度
3.代表时关键字搜索。每个页面都需要这个部分,因为百度爬虫 爬的就是这些
日期在jsp页面中和java后台也是类似 下面上代码
<%
Date d = new Date();
out.print("<h1 align=\"center\">" + date.toString()+"</h1>");
%>
输出的格式是: Sat Jun 25 17:47:55 CST 2017
另一种带格式的方法也和java后台代码类似
<%
Date d = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
out.print("<h1 align=\"center\">"+sdf.format(d)+"</h1>");
%>