当前位置: 技术问答>java相关
初学jsp的asp程序员的十个疑问(我会继续补分)
来源: 互联网 发布时间:2015-04-03
本文导语: 1 时间函数怎么用,如何分别获取当前年月日时分秒,时间差怎么用(就是asp中的datediff()) 2 switch怎么用(就是asp中的select case) 3 s.replace('a','b')行,可是s.replace('a','bb')不行,如何解决,还有asp中的instr()功能在jsp中什么...
1 时间函数怎么用,如何分别获取当前年月日时分秒,时间差怎么用(就是asp中的datediff())
2 switch怎么用(就是asp中的select case)
3 s.replace('a','b')行,可是s.replace('a','bb')不行,如何解决,还有asp中的instr()功能在jsp中什么来对应
4 跳出循环的命令(就是asp中的exit do)
5 强制页面结束的命令(就是asp中的response.end)
6 强制页面转向的命令(就是asp中的response.redirect)
7 打开rs时只读和修改权限的控制(就是asp中的Rs.Open SQL,Conn,1,1/3)
8 rs为空时的判断(就是asp中的rs.eof)
9 如何方便的获取rs的数目(就是asp中的rs.count)
10 防错(就是asp中的On Error Resume Next)
2 switch怎么用(就是asp中的select case)
3 s.replace('a','b')行,可是s.replace('a','bb')不行,如何解决,还有asp中的instr()功能在jsp中什么来对应
4 跳出循环的命令(就是asp中的exit do)
5 强制页面结束的命令(就是asp中的response.end)
6 强制页面转向的命令(就是asp中的response.redirect)
7 打开rs时只读和修改权限的控制(就是asp中的Rs.Open SQL,Conn,1,1/3)
8 rs为空时的判断(就是asp中的rs.eof)
9 如何方便的获取rs的数目(就是asp中的rs.count)
10 防错(就是asp中的On Error Resume Next)
|
1、获取当前时间:
GregorianCalendar now = new GregorianCalendar();
out.println(now.get(Calendar.YEAR));
out.println(now.get(Calendar.MONTH));
out.println(now.get(Calendar.DAY_OF_MONTH));
out.println(now.get(Calendar.HOUR_OF_DAY));
out.println(now.get(Calendar.MINUTE));
out.println(now.get(Calendar.SECOND));
out.println(now.get(Calendar.MILLISECOND));
比较时间:
now2.getTime().getTime() - now.getTime().getTime()
得到相差的毫秒数。
2、
switch(type)
{
case 0:
case 1:
{
//something to do
} break;
case 2:
{
//something to do
}
break;
default:
{
//something to do
}
}
3、当然不行了,String类没有replace(String s1, String s2)这样的方法,要自己写一个:
把这些代码加到JSP中,然后就可以这样调用了:text = replace(text,"n","
");
4、是关键字break
5、用return结束本页面
6、response.sendRedirect("page2.html");
GregorianCalendar now = new GregorianCalendar();
out.println(now.get(Calendar.YEAR));
out.println(now.get(Calendar.MONTH));
out.println(now.get(Calendar.DAY_OF_MONTH));
out.println(now.get(Calendar.HOUR_OF_DAY));
out.println(now.get(Calendar.MINUTE));
out.println(now.get(Calendar.SECOND));
out.println(now.get(Calendar.MILLISECOND));
比较时间:
now2.getTime().getTime() - now.getTime().getTime()
得到相差的毫秒数。
2、
switch(type)
{
case 0:
case 1:
{
//something to do
} break;
case 2:
{
//something to do
}
break;
default:
{
//something to do
}
}
3、当然不行了,String类没有replace(String s1, String s2)这样的方法,要自己写一个:
把这些代码加到JSP中,然后就可以这样调用了:text = replace(text,"n","
");
4、是关键字break
5、用return结束本页面
6、response.sendRedirect("page2.html");