- 授权协议: BSD
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://informatica.info/projects/html4j/index.html
- 软件文档: http://informatica.info/projects/html4j/doc/api/
软件介绍
HTML4J 是一个 Java 解析 HTML 的类库。示例代码:
Reader re = ...
// Create the document
HTMLDoc doc = new HTMLDoc();
// Load its content
doc.load(re);
// Get the HTML
HTMLFragment html = doc.getHTML();
// Create a 'date' meta-tag
HTMLTag tag = HTMLTag.parse("<meta name=\"date\" content=21/01/2001>");
// Insert it just before the title
html.insertBefore(html.findTagByName("title"), tag);
// Create a paragraph
tag = HTMLTag.create("p");
// Insert '<p>Paragraph</p>' just before a tag with id="someid"
html.insertBefore(html.getIdFinder("someid").getTag().getPosition(),
tag.toString("Paragraph"));
// Create an anchor to foo.html
HTMLTag anchor = HTMLTag.parse("<a href=\"foo.html\">");
// We could also do a 'HTMLTag.create("a")' and then set the 'href'
// attribute using getAttributes().setAttribute("href", "foo.html")
//
// Now we get a tag block with id="otherid"
tag = html.getIdFinder("otherid").getTagBlock();
// Replace the tag that has id="otherid" by the same tag
// embraced by the foo.html anchor
html.replace(tag.getBlockPosition(), anchor.toString(tag));
// For example, if the 'otherid' tag was 'img src="something.jpg"',
// then the result would be:
// '<a target="_blank" rel="nofollow" href="foo.html"><img id="otherid" src="something.jpg"></a>'
//
tag = html.getTagByName("meta");
// We just got the first 'meta' tag found in the document, and now we
// set its name attribute to 'last_update', and its value
// (the 'content' attribute) to "20/01/2001"
tag.getAttributes().setAttribute("name", "last_update");
tag.getAttributes().setAttribute("content", "20/01/2001");
// Commit the changes to the 'meta' tag to the document
html.update(tag);
JSP 应用开发详解(第二版)
飞思科技产品研发中心 / 电子工业出版社 / 2004-1-1 / 55.00
本书结合JSP和Servlet的最新规范,从基本的语法和规范入手,以经验为后盾,以实用为目标,以实例为导向,以实践为指导,深入浅出地讲解了JSP 开发中的种种问题。以精简的内容介绍了JSP的语法、Servlet技术、JDBC技术、标签库技术、表达式语言、Struts、JavaServer Face等技术;对于JSP开发中常遇到的典型的难点,专门设置了专题进行集中讨论。本书的最后一篇围绕一个电子商务......一起来看看 《JSP 应用开发详解(第二版)》 这本书的介绍吧!
