- 1、本文档共7页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
JSP实验报告3.4.5
实验三:试用attribute指令和variable指令
相关知识点
一个Tag文件中通过使用attribute指令:
inputAndShow.jsp
%@ page contentType=text/html;Charset=GB2312 %
%@ taglib tagdir=/WEB-INF/tags prefix=computer %
HTML
输入的三个数值a,b,c(代表三角形的三边或梯形的上底、下底和高):
BODY color=cyan
FORM action= method=get name=form
table
trtd输入数值a:/td
tdINPUT type=text name=a/td
/tr
trtd输入数值b:/td
tdINPUT type=text name=b/td
/tr
trtd输入数值c:/td
tdINPUT type=text name=c/td
/tr
/table
INPUT type=radio name=R value=triangle代表三角形
INPUT type=radio name=R value=lader代表梯形
brINPUT TYPE=submit value=提交 name=submit
/FORM
% String a=request.getParameter(a);
String b=request.getParameter(b);
String c=request.getParameter(c);
String cd=request.getParameter(R);
if(a==null||b==null||c==null){
a=0;
b=0;
c=0;
cd=0;
}
if(a.length()0b.length()0c.length()0){
% computer:GetArea numberA=%=a% numberB=%=b%
numberC=%=c% condition=%=cd%/
br%=message%
br%=area%
% }
%
/BODY/HTML
GetArea.Tag
%@ attribute name=numberA required=true %
%@ attribute name=numberB required=true %
%@ attribute name=numberC required=true %
%@ attribute name=condition required=true %
%@ variable name-given=area variable-class=java.lang.Double scope=AT_END
%
%@ variable name-given=message scope=AT_END %
%!
public double getTriangleArea(double a,double b,double c){
if(a+bca+cbc+ba){
double p=(a+b+c)/2.0;
double area=Math.sqrt(p*(p-a)*(p-b)*(p-c));
return area;
}
else
return -1;
}
public double getLaderArea(double above,double bottom,double h){
double area=(above+bottom)*h/2.0;
return area;
}
%
% try{ double a=Double.parseDouble(numberA);
double b=Double.parseDouble(numberB);
double c=Double.parseDouble(numberC);
double result=0;
if(condition.equals(triangle)){
result=getTriangleArea(a,b,c);
jspContext.setAttribute(area,new Double(result));
jspContext.setAttribute(message,三角形的面积);
}
else if(condition.equals(lader)){
文档评论(0)