0414
:对象的使用
修改方法。
(
写一个通用的修改
SQL
语句
):
在修改时
,
通过
id
获得一个对象
,
现修改这对象
,
最后把对象传递给
DAO
里的修改处理。
0414
:
java
里的静态方法
public static void method()
{
}
对于静态方法
.
在调用时
,
不有
new
对象
,
用方法名就可访问。
0420
:类型转换:
int ---
à
String
:
1
),
String newString = “”+intValue
;
2
),
String newString = Integer.toString(intValue);
String -
à
int
:
1
),
int intValue = Integer.parInt(StringValue);
2)
,
int intValue = new Integer(StringValue)
。
intValue()
;
0524
:
Web
打印
(javascript)
使用
JavaScript
方式:
<form name=”form1” action=”” method=”post” onLoad=”window.print();”>
或者这样调用:
<script language=”javascript”>window.print();</script>
处理原则:复制一个想打印的
jsp
(
jsp1
到
jsp2
)等页面,并去掉按钮等不想打印的东西,
jsp1
里调用
jsp2,
在
jsp2
里自动调用打印函数。(有上面的两种方法可以使用)在
0526
:
javascript
知识:弹出窗口自动关闭
<script language="JavaScript">
function closeit()
{
setTimeout("self.close()",10000) //
毫秒
}
</script>
0526
:
SQL
语句:外连接
select a,name,b.age from a left outer join b on a.id=b.id
0701
:
javascript
隐藏显示功能
<script language=”javascript”>
function displayControl(theForm)
{
if(theForm.select.value == 2)
{
theForm.text..style.display = “block”;
theForm.text.value = “
请输入上海信息
!”;
}
}
</script>
<form name=”form1” action=”” method=”post”>
<select name=”select” onChange=”displayControl(document.form1)”>
<option value=”1”>
北京
</option>
<option value=”2”>
上海
</option>
</select>
<input type=”text” name=”text” style=”display:none”>
</form>