jerryjerry123
发贴: 58
积分: 12
|
于 2005-05-10 10:21
1、首先编写一个(标签java文件) 头文件中要包含packeg+class文件的放置路径,然后编译生成class文件,放到相应classes目录下。 2、编写一个jsp或html 文件 注意:头文件中要写 <%@ taglib uri="名字与web.xml文件中的uri名字相同" prefix="first" %> <first:"+tld文件中name相同"/> 3、编写一个tld文件 注意:修改 <tag> <name>"与jsp或html相对应"</name> <tagclass>"class文件的放置路径"</tagclass> <bodycontent>empty</bodycontent>//注意什么时候用empty什么时候用jsp(与jsp/html有关) <info>info</info> </tag> 4、修改web.xml文件即添加标签 注意:添加 <taglib> <taglib-uri>"与jsp或html的uri名字相同"</taglib-uri> <taglib-location>"tld文件的放置路径"</taglib-location> </taglib>
以上是通过xml作中转,如不许xml文件操作如下: 只许修改jsp以下内容: 、编写一个jsp或html 文件 注意:头文件中要写 <%@ taglib uri="tld文件的所在位置" prefix="first" %> <first:"+tld文件中name相同"/>
|