初涉世道
BlogJava
首页
新随笔
联系
聚合
管理
随笔-51 评论-14 文章-0 trackbacks-0
简单的JSTL应用(入门)
需要的包及TLD文件:
首先需要将用到的jar包放入WEB-INF/lib 目录下,再将c.tld文件放到/WEB-INF目录下
jstl.jar
standard.jar
form.html
<
html
>
<
head
><
title
>
Select Your Portal
</
title
></
head
>
<
body
>
<
h1
>
请选择:
</
h1
>
<
form action
=
"
form.jsp
"
method
=
"
get
"
>
<
select name
=
"
portchoice
"
>
<
option value
=
"
1
"
>
电脑
</
option
>
<
option value
=
"
2
"
>
网络
</
option
>
<
option value
=
"
3
"
>
软件
</
option
>
</
select
>
<
input type
=
"
submit
"
value
=
"
Select
"
/>
</
form
>
</
body
>
</
html
>
form.jsp
<%
@ page contentType
=
"
text/html; charset=GBK
"
%>
<%
@ page isELIgnored
=
"
false
"
%>
<%
@ taglib prefix
=
"
c
"
uri
=
"
http://java.sun.com/jsp/jstl/core
"
%>
<
html
>
<
c:choose
>
<
c:when test
=
"
${param.portchoice == '1'}
"
>
<
head
><
title
>
欢迎来到电脑世界
</
title
></
head
>
<
body
>
<
h1
>
欢迎来到电脑世界
</
h1
>
</
body
>
</
c:when
>
<
c:when test
=
"
${param.portchoice == '2'}
"
>
<
head
><
title
>
网络天地欢迎您
</
title
></
head
>
<
body
>
<
h1
>
网络天地欢迎您
</
h1
>
</
body
>
</
c:when
>
<
c:when test
=
"
${param.portchoice == '3'}
"
>
<
head
><
title
>
学软件
</
title
></
head
>
<
body
>
<
h1
>
我们一起学软件
!</
h1
>
</
body
>
</
c:when
>
<
c:otherwise
>
<
head
><
title
>
其它
</
title
></
head
>
<
body
>
<
h1
>
其它选项
</
h1
>
</
body
>
</
c:otherwise
>
</
c:choose
>
</
html
>
另外需要在web.xml文件中加入如下代码:(经试验可有可无)
<
taglib
>
<
taglib
-
uri
>
http:
//
java.sun.com/jsp/jstl/core</taglib-uri>
<
taglib
-
location
>/
WEB
-
INF
/
c.tld
</
taglib
-
location
>
</
taglib
>
二,EL表达式语言接收参数乱码问题
发送请求的页面表单须使用POST提交参数(使用GET会出现???乱码,我也不清楚什么原因)
接收参数的页面加入如下代码:
<%
@ taglib prefix
=
"
fmt
"
uri
=
"
/WEB-INF/fmt.tld
"
%>
<
fmt:requestEncoding value
=
"
GB2312
"
/>
posted on 2008-04-07 19:51
Hank1026
阅读(218)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
<
2008年4月
>
日
一
二
三
四
五
六
30
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
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(2)
给我留言
查看公开留言
查看私人留言
随笔分类
Ext学习积累(1)
每日积累(35)
随笔档案
2008年9月 (1)
2008年8月 (4)
2008年7月 (17)
2008年6月 (17)
2008年5月 (3)
2008年4月 (6)
2008年3月 (3)
百度博客
初涉世道
搜索
最新评论
1. re: 使用COOKIE登录验证(转载)
fsfsdvsdfv
--vfdgv
2. re: PDF文件内嵌到html页面
评论内容较长,点击标题查看
--方心如
3. re: bean:define标签用法[未登录]
fdasfa
--ccc
4. re: 使用COOKIE登录验证asd(转载)
asdasd
--asdas
5. re: java 生成图片缩略图
11
--ss
阅读排行榜
1. 数据库连接池简介(13345)
2. getServlet().getServletContext().getRealPath("/");与request.getRealPath("");(7622)
3. java 生成图片缩略图(7528)
4. html:file标签的使用(5642)
5. 使用COOKIE登录验证(转载)(5197)
评论排行榜
1. getServlet().getServletContext().getRealPath("/");与request.getRealPath("");(3)
2. 使用COOKIE登录验证(转载)(3)
3. html:file标签的使用(2)
4. bean:define标签用法(1)
5. div 缓慢下拉效果(1)