zoukankan      html  css  js  c++  java
  • 一个简单方法:构造xml的document,并将其转换为string

        首先,构造一个document对象

    	Document doc = null;
    	try {
                doc = DocumentBuilderFactory.newInstance()
    				.newDocumentBuilder().newDocument();
    	} catch (ParserConfigurationException e) {
            e.printStackTrace();
            return null;
    	}
        然后,在doc中加入需要的节点,例如:
    	Element register = doc.createElement("Register");
    	register.setAttribute("id", REGISTER_ATTRIB_ID);
    	register.setAttribute("type", REGISTER_ATTRIB_TYPE);
    	doc.appendChild(register);
    		
    	Element params = doc.createElement("Params");
    	register.appendChild(params);
    
            Element item = doc.createElement(tagName);
            item.appendChild(doc.createTextNode(textNode));
            params.appendChild(item);
    
        最后,将document对象转换成字符串
    	public static String convertDocToString(Document doc, String propertyName, String progertyValue){
    		Transformer transformer = null;
    		try {
    			transformer = TransformerFactory.newInstance().newTransformer();
    		} catch (TransformerConfigurationException e) {
    			e.printStackTrace();
    			return null;
    		} catch (TransformerFactoryConfigurationError e) {
    			e.printStackTrace();
    			return null;
    		}
    		transformer.setOutputProperty(propertyName, progertyValue);
    		DOMSource domSource = new DOMSource(doc);
    		StreamResult streamResult = new StreamResult();
    		
    		ByteArrayOutputStream os = new ByteArrayOutputStream();
    		streamResult.setOutputStream(os);
    		try {
    			transformer.transform(domSource, streamResult);
    		} catch (TransformerException e) {
    			e.printStackTrace();
    			return null;
    		} finally {
    			try {
    				os.flush();
    				os.close();
    			} catch (Exception e2) {
    				e2.printStackTrace();
    			}
    		}
    		
    		return os.toString();
    	}






    
    

  • 相关阅读:
    css代码中position的定位,baidu+总结
    ibatis_HelloWorld
    v7系统,任务栏的开始图标和其他图标重合问题
    递归方法:输入一个多位整数,计算出从0到该数1出现的个数。
    解决JS:window.close()在Firefox下的不能关闭的问题
    Programming in the MidFuture(转)
    修改blog问题
    面向数据库的高级语言
    F#试用感受
    基于.net的数学编程语言
  • 原文地址:https://www.cnblogs.com/yuanchongjie/p/4448368.html
Copyright © 2011-2022 走看看