📄 xmlutil.java
字号:
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */package com.opensymphony.workflow.loader;import com.opensymphony.workflow.util.XMLizable;import org.w3c.dom.Element;import org.w3c.dom.Node;import org.w3c.dom.NodeList;import java.io.PrintWriter;import java.util.ArrayList;import java.util.List;/** * * * @author <a href="mailto:plightbo@.com">Pat Lightbody</a> */public class XMLUtil { //~ Methods //////////////////////////////////////////////////////////////// public static Element getChildElement(Element parent, String childName) { NodeList children = parent.getChildNodes(); int size = children.getLength(); for (int i = 0; i < size; i++) { Node node = children.item(i); if (node.getNodeType() == Node.ELEMENT_NODE) { Element element = (Element) node; if (childName.equals(element.getNodeName())) { return element; } } } return null; } public static List getChildElements(Element parent, String childName) { NodeList children = parent.getChildNodes(); List list = new ArrayList(); int size = children.getLength(); for (int i = 0; i < size; i++) { Node node = children.item(i); if (node.getNodeType() == Node.ELEMENT_NODE) { Element element = (Element) node; if (childName.equals(element.getNodeName())) { list.add(element); } } } return list; } public static String getChildText(Element parent, String childName) { Element child = getChildElement(parent, childName); if (child == null) { return null; } return getText(child); } public static String getText(Element node) { StringBuffer sb = new StringBuffer(); NodeList list = node.getChildNodes(); for (int i = 0; i < list.getLength(); i++) { Node child = list.item(i); switch (child.getNodeType()) { case Node.CDATA_SECTION_NODE: case Node.TEXT_NODE: sb.append(child.getNodeValue()); } } return sb.toString(); } public static String encode(Object string) { if (string == null) { return ""; } char[] chars = string.toString().toCharArray(); StringBuffer out = new StringBuffer(); for (int i = 0; i < chars.length; i++) { switch (chars[i]) { case '&': out.append("&"); break; case '<': out.append("<"); break; case '>': out.append(">"); break; case '\"': out.append("""); break; default: out.append(chars[i]); } } return out.toString(); } public static void printIndent(PrintWriter out, int indent) { for (int i = 0; i < indent; i++) { out.print(XMLizable.INDENT); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -