⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nodes.java

📁 非常接近C/S操作方式的Java Ajax框架-ZK 用ZK框架使你的B/S应用程序更漂亮更易操作。 官网:www.zkoss.org
💻 JAVA
字号:
/* Nodes.java{{IS_NOTE	Purpose: 	Description: 	History:	2001/09/27 17:15:27, Create, Tom M. Yeh.}}IS_NOTECopyright (C) 2001 Potix Corporation. All Rights Reserved.{{IS_RIGHT	This program is distributed under GPL Version 2.0 in the hope that	it will be useful, but WITHOUT ANY WARRANTY.}}IS_RIGHT*/package org.zkoss.xml;import java.util.Collections;import org.w3c.dom.Node;import org.w3c.dom.NodeList;import org.zkoss.idom.Item;/** * Node related utilities. * It supports iDOM. * * @author tomyeh */public class Nodes {	/** The empty node list. */	public static final NodeList EMPTY_NODELIST		= new FacadeNodeList(Collections.EMPTY_LIST);	/**	 * Get the text value of a node.	 *	 * <p>If the node is <i>not</i> an element, Node.getNodeValue is called.	 * If the node is an element, the returned string is a catenation of	 * all values of TEXT_NODE and CDATA_SECTION_NODE.	 *	 * <p>Textual nodes include Text, CDATA and Binary (iDOM's extension).	 */	public static final String valueOf(Node node) {		if (node instanceof Item) {			String v = ((Item)node).getText();			return v != null ? v: "";		}		if (node.getNodeType() == Node.ELEMENT_NODE) {			StringBuffer sb = new StringBuffer();			NodeList nl = node.getChildNodes();			Node child;			for (int j=0; (child=nl.item(j)) != null; ++j) {				int type = child.getNodeType();				if (type==Node.TEXT_NODE || type==Node.CDATA_SECTION_NODE)					sb.append(valueOf(child));			}			return sb.toString();		}		String v = node.getNodeValue();		return v != null ? v: "";	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -