[原创]java WEB学习笔记41:简单标签之带属性的自定义标签(输出指定文件,计算并输出两个数的最大值 demo)

时间:2022-04-22 19:42:36

本博客为原创:综合 尚硅谷(http://www.atguigu.com)的系统教程(深表感谢)和 网络上的现有资源(博客,文档,图书等),资源的出处我会标明

本博客的目的:①总结自己的学习过程,相当于学习笔记 ②将自己的经验分享给大家,相互学习,互相交流,不可商用

内容难免出现问题,欢迎指正,交流,探讨,可以留言,也可以通过以下方式联系。

本人互联网技术爱好者,互联网技术发烧友

微博:伊直都在0221

QQ:951226918

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

1. 带属性的自定义标签

  1)先在标签处理器类中定义 setter 方法:建议把所有的属性的类型都设置成 String 类型

 private String value;
private String count; public void setValue(String value) {
this.value = value;
} public void setCount(String count) {
this.count = count;
}

 

   2)在 tld 描述文件中来描述属性

 <!-- 描述当前的标签的属性  -->
<attribute>
<!-- 属性名 需要和标签处理类的setter 方法定义的属性相同-->
<name>value</name>
<!-- 该属性名是必须的 -->
<required>true</required>
<!-- rtexprvalue :runtime expression value 当前属性是否可以运行时表达式的动态值-->
<rtexprvalue>true</rtexprvalue>
</attribute> <attribute>
<!-- 属性名 -->
<name>count</name>
<!-- 该属性名是必须的 -->
<required>false</required>
<!-- rtexprvalue :runtime expression value 当前属性是否可以运行时表达式的动态值-->
<rtexprvalue>false</rtexprvalue>
</attribute>

  3)在页面中使用标签,并且加入属性,属性名同 tld 文件中定义的名字

    

 <jason:hell value="${param.name }" count="10"/>

2.练习

  demo1. 定制一个带有两个属性的标签<max>, 用于计算并输出两个数的最大值

  MaxTag.java

    

 package com.jason.tag.mytag;

 import java.io.IOException;

 import javax.servlet.jsp.JspContext;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.PageContext;
import javax.servlet.jsp.tagext.JspFragment;
import javax.servlet.jsp.tagext.JspTag;
import javax.servlet.jsp.tagext.SimpleTag; public class MaxTag implements SimpleTag { private PageContext pageContext;
private String num1;
private String num2; public void setNum1(String num1) {
this.num1 = num1;
} public void setNum2(String num2) {
this.num2 = num2;
} @Override
public void doTag() throws JspException, IOException {
int b = 0;
int a = 0; JspWriter out = pageContext.getOut();
try {
a = Integer.parseInt(num1);
b = Integer.parseInt(num2); out.print(a > b ? a : b);
} catch (Exception e) {
out.print("输入有问题");
} } @Override
public JspTag getParent() {
// TODO Auto-generated method stub
return null;
} @Override
public void setJspBody(JspFragment arg0) {
// TODO Auto-generated method stub } @Override
public void setJspContext(JspContext pageContext) {
this.pageContext = (PageContext) pageContext; } @Override
public void setParent(JspTag arg0) { } }

  mytag.tld

 <?xml version="1.0" encoding="UTF-8" ?>

 <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0"> <!-- 描述 tld 文件 -->
<description>jaosn's first DIY jsp tag</description>
<display-name>jason tag</display-name>
<tlib-version>1.0</tlib-version> <!-- 建议在 JSP 页面上使用的标签的前缀 -->
<short-name>jason</short-name> <!-- 作为 tld 文件的 id ,用来唯一标识当前的 tld 文件,多个 tld 文件的 uri 不能重复,通过 JSP 页面的 taglib 指令的 uri 属性引用 -->
<uri>http://www.jason.com/jason/diy/tag/core</uri> <tag>
<name>max</name>
<tag-class>com.jason.tag.mytag.MaxTag</tag-class>
<body-content>empty</body-content> <attribute>
<name>num1</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute> <attribute>
<name>num2</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute> </tag>

  testmytag.jsp

 <body>

     <jason:max num2="${param.a }" num1="${param.b }"/>

 </body>

注意:通常在开发中,将标签处理类 继承 SimpleTagSupport 类,更加方便,简洁。 直接调用对应的getter方法 得到对应的 API

 package javax.servlet.jsp.tagext;

 import java.io.IOException;

 import javax.servlet.jsp.JspContext;
import javax.servlet.jsp.JspException; public class SimpleTagSupport implements SimpleTag { public SimpleTagSupport() {
} public void doTag() throws JspException, IOException {
} private JspTag parentTag;
public void setParent( JspTag parent ) {
this.parentTag = parent;
} public JspTag getParent() {
return this.parentTag;
} private JspContext jspContext;
public void setJspContext( JspContext pc ) {
this.jspContext = pc;
} protected JspContext getJspContext() {
return this.jspContext;
} private JspFragment jspBody;
public void setJspBody( JspFragment jspBody ) {
this.jspBody = jspBody;
} protected JspFragment getJspBody() {
return this.jspBody;
} public static final JspTag findAncestorWithClass(
JspTag from, Class<?> klass)
{
boolean isInterface = false; if (from == null || klass == null
|| (!JspTag.class.isAssignableFrom(klass)
&& !(isInterface = klass.isInterface()))) {
return null;
} for (;;) {
JspTag parent = null;
if( from instanceof SimpleTag ) {
parent = ((SimpleTag)from).getParent();
}
else if( from instanceof Tag ) {
parent = ((Tag)from).getParent();
}
if (parent == null) {
return null;
} if (parent instanceof TagAdapter) {
parent = ((TagAdapter) parent).getAdaptee();
} if ((isInterface && klass.isInstance(parent))
|| klass.isAssignableFrom(parent.getClass())) {
return parent;
} from = parent;
}
}
}

  demo2.定制一个带有一个属性的标签<atgiugu: readFile src=“”>, 用于输出指定文件的

   ReadFileTag.java

 package com.jason.tag.mytag;

 import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader; import javax.servlet.jsp.JspException;
import javax.servlet.jsp.PageContext;
import javax.servlet.jsp.tagext.SimpleTagSupport; public class ReadFileTag extends SimpleTagSupport{ //相对于当前 web应用的根路径的文件名
private String src; public void setSrc(String src) {
this.src = src;
} @Override
public void doTag() throws JspException, IOException {
PageContext pageContext = (PageContext) getJspContext();
InputStream in = pageContext.getServletContext().getResourceAsStream(src); BufferedReader br = new BufferedReader(new InputStreamReader(in));
String str = null;
while((str = br.readLine()) != null){
pageContext.getOut().write(str);
pageContext.getOut().write("<br>"); } }
}

  mytag.tld

 <?xml version="1.0" encoding="UTF-8" ?>

 <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0"> <!-- 描述 tld 文件 -->
<description>jaosn's first DIY jsp tag</description>
<display-name>jason tag</display-name>
<tlib-version>1.0</tlib-version> <!-- 建议在 JSP 页面上使用的标签的前缀 -->
<short-name>jason</short-name> <!-- 作为 tld 文件的 id ,用来唯一标识当前的 tld 文件,多个 tld 文件的 uri 不能重复,通过 JSP 页面的 taglib 指令的 uri 属性引用 -->
<uri>http://www.jason.com/jason/diy/tag/core</uri> <tag>
<name>readFile</name>
<tag-class>com.jason.tag.mytag.ReadFileTag</tag-class>
<body-content>empty</body-content> <attribute>
<name>src</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>

  testmytag.jsp

 <jason:readFile src="/note.txt"/>