Johnhe
BlogJava
首页
新随笔
新文章
联系
聚合
管理
posts - 20,comments - 6,trackbacks - 0
<
2009年6月
>
日
一
二
三
四
五
六
31
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
1
2
3
4
5
6
7
8
9
10
11
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
给我留言
查看公开留言
查看私人留言
随笔分类
Hibernate
J2SE(7)
javascript(4)
Jdbc(1)
Jsp(3)
Oracle(2)
struts1.x+struts2
我和哥哥...我们的爱情.
随笔档案
2010年2月 (1)
2009年7月 (2)
2009年6月 (1)
2009年5月 (4)
2009年4月 (1)
2009年3月 (11)
搜索
最新评论
1. re: 关于request.getParameterValues("String")的空指针异常
一定可以
--5
2. re: 关于request.getParameterValues("String")的空指针异常
@xli
哪里不行。你问题发上来呢。我帮你看啊。
大家一起解决问题。
反正我是可以了哦。
--晓江小子
3. re: 关于request.getParameterValues("String")的空指针异常
还是不行啊。郁闷
--xli
4. re: 关于java.lang.String的split方法???
评论内容较长,点击标题查看
--林韵
5. re: 关于java.lang.String的split方法???[未登录]
@mumu
哦,明白了。谢谢你。
没有仔细看。额。谢谢。
--晓江小子
阅读排行榜
1. Oracle取得时间的时分秒(4906)
2. 关于request.getParameterValues("String")的空指针异常(3276)
3. [转]JSP开发时, 在页面中格式化和解析日期始终是个头疼的事情. 可以用JSTL和JavaScript搞定.(2455)
4. 关于Hibernate的一对多保存的问题?(2083)
5. 关于java.lang.String的split方法???(1374)
评论排行榜
1. 关于request.getParameterValues("String")的空指针异常(3)
2. 关于java.lang.String的split方法???(3)
3. 复选框问题---自己碰到的。(0)
4. 拼串(0)
5. 关于删除的方法!(0)
2009年6月25日
frame锚点静态chm书
frame锚点静态chm书
/Files/spiritahead/frame.rar
posted @
2010-02-02 16:31
Johnhe 阅读(232) |
评论 (0)
|
编辑
收藏
简单的。。。
System.out.println(
"
-------------2----------
"
+
uuid);
if
(flag
==
1
)
{
String url_success
=
"
wangdian_extend_update.jsp?dwdm=
"
+
dwdm
+
"
&wxyid=
"
+
wxyid
+
"
&uuid=
"
+
uuid;
out.println(
"
<script>window.setTimeout(\
"
window.location
=
'
"+url_success+"
'
\
"
,10)</script>
"
);
}
else
{
out.println(
"
添加失败!
"
);
String url_fail
=
"
wangdian_extend.jsp?dwdm=
"
+
dwdm
+
"
&wxyid=
"
+
wxyid;
out.println(
"
<script>window.setTimeout(\
"
window.location
=
'
"+url_fail+"
'
\
"
,10)</script>
"
);
}
posted @
2009-07-02 18:02
Johnhe 阅读(164) |
评论 (0)
|
编辑
收藏
记录自己要用的东西而已。。。。很简单 不用看了
<
table align
=
"
center
"
width
=
"
640
"
>
<
tr
>
<
td
>
对应网点:
&
nbsp;
&
nbsp;
&
nbsp;
&
nbsp;
<
select name
=
"
wangdian
"
id
=
"
wangdian
"
style
=
"
width:80pt;
"
onchange="window.location='/safety-wxy/ent/wangdian_extend_update.jsp?dwdm=<%=dwdm%>&wxyid=<%=wxyid%>&uuid='+this.value;">
<
option value
=
"
0
"
></
option
>
<%
String oid
=
""
;
String wdname
=
""
;
Connection connection;
try
{
connection
=
DataFactory.getConnection(
"
wxyinfor
"
);
}
catch
(Exception e)
{
throw
new
SQLException(e.toString());
}
Statement statement
=
null
;
ResultSet resultset
=
null
;
//
System.out.println("--------"+uuid);
String sql
=
"
select oid,wdname,wdaddress,wdfzr,wdlxdh from T_xzwdext where dwdm = '
"
+
dwdm
+
"
' and wxyid = '
"
+
wxyid
+
"
'
"
;
System.out.println(
"
----test sql ---
"
+
sql);
try
{
statement
=
connection.createStatement();
//
resultset = statement.executeUpdate(sql);
resultset
=
statement.executeQuery(sql);
while
(resultset.next())
{
//
oid = resultset.getString("oid");
%>
<
option value
=
"
<%=resultset.getString(
"
oid
"
) %>
"
><%=
resultset.getString(
"
wdname
"
)
%></
option
>
<%
//
wdname = resultset.getString("wdname");
}
}
catch
(Exception e)
{
System.out.println(e.getMessage());
}
finally
{
try
{
if
(
null
!=
resultset)
{
resultset.close();
resultset
=
null
;
}
}
catch
(SQLException e1)
{}
try
{
if
(
null
!=
statement)
{
statement.close();
statement
=
null
;
}
}
catch
(SQLException e2)
{}
try
{
if
(
null
!=
connection)
{
connection.close();
connection
=
null
;
}
}
catch
(SQLException e3)
{}
}
%>
<%
System.out.println(usertype);
if
(usertype
!=
null
&
!
"
adm
"
.equals(usertype))
{
%>
<
input name
=
"
wadd
"
type
=
"
button
"
id
=
"
wadd
"
value
=
"
添加网点
"
onclick="window.location='/safety-wxy/ent/wangdian_extend.jsp?dwdm=<%=dwdm%>&wxyid=<%=wxyid%>'"
>
<%
}
%>
</
td
>
</
tr
>
</
table
>
posted @
2009-07-02 15:07
Johnhe 阅读(158) |
评论 (0)
|
编辑
收藏
Select控件value的值的问题。
<
select name
=
"
wangdian
"
id
=
"
wangdian
"
style
=
"
width:80pt;
"
onchange
=
"
window.location='/safety-wxy/ent/wangdian_extend_update.jsp?dwdm=<%=dwdm%>&wxyid=<%=wxyid%>&uuid='+this.value;
"
>
解决onchange时候 获得value的值
posted @
2009-06-25 16:28
Johnhe 阅读(190) |
评论 (0)
|
编辑
收藏