Ìí¼ÓXML½Úµã
Ìí¼ÓXML½Úµã
/// <summary>
/// ³õʼ»¯XML status-0
/// </summary>
/// <returns></returns>
private bool InitialConfig()
{
bool bRet = false;
try
{
PatchID = Guid.NewGuid().ToString();
string dirXml = ConfigurationManager.AppSettings["xmlFilePath"];
XmlDocument doc = new XmlDocument();
doc.Load(dirXml);
XmlNode rootNode = doc.DocumentElement;
//XmlNode dataInfo = rootNode.SelectSingleNode("/DataInfo") as XmlNode;
XmlElement decompress = doc.CreateElement("Decompress");
decompress.SetAttribute("PatchID", PatchID);
XmlElement status = doc.CreateElement("Status");
status.InnerText = "0";
XmlElement createDate = doc.CreateElement("CreateDate");
createDate.InnerText = DateTime.Now.ToString();
decompress.AppendChild(status);
decompress.AppendChild(createDate);
 
Ïà¹ØÎĵµ£º
¡¡¡¡¡¡ÔÚ²»ÄÜÉÏÍâÍøµÄÇé¿öÏ£¬ÎÒÃÇÔÚeclipseÖÐдxmlʱÎÞ·¨µÃµ½±êÇ©µÄÌáʾ£¬ÒòΪxmlÖеÄdtd»ñÈ¡²»µ½.
¡¡¡¡¡¡¿´ÁËÏÂÍâÃæµÄ×ÊÁÏ¡£ËµÊÇÑ¡Ôñ"window"-->"preferences"--->"Myeclipse Enterprise Workbench"-->"Files and Editors"-->"xml"-->"xml category"
¡¡¡¡¡¡ÔÚuser specified EntriesÖÐÐÂÔöÒ»¸ö. £¨ ......
package com.kiloway.trace.utils;
import java.lang.reflect.Field;
/**
* @author Zhang Qi
* @Create Time 2010/01/09
* */
public class ObjectToXML {
public String toString(Object object) throws Exception {
StringBuilder sb = new StringBuilder();
//µÃµ½ÀàµÄÃû³Æ
String classname = obj ......
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.util.ArrayList;
import java.util.List;
import javax.xml.parsers.DocumentBuilder;
import javax ......
×î³£¼ûµÄXMLÊý¾ÝÀàÐÍÓУºElement, Attribute£¬Comment, Text.
Element, Ö¸ÐÎÈç<Name>Tom<Name>µÄ½Úµã¡£Ëü¿ÉÒÔ°üÀ¨£ºElement, Text, Comment, ProcessingInstruction, CDATA, and EntityReference.
Attribute, Ö¸ÔÚ<Employee id=”12345”>ÖеĴÖÌ岿·Ö¡£
......
µ±ÎÒÃÇÓÃWINDOWSËÑË÷ij°üº¬Ä³ÎÄ×ÖµÄÎļþʱ£¬¿ÉÒÔÔÚ“°üº¬ÎÄ×Ö”´¦ÌîÉÏËÑË÷´Ê¡£µ«ÊÇһЩ²»³£¼ûµÄºó׺ÃûÎļþWINDOWS²»»áËÑË÷£¬È磺£¬.log¡¢.dll¡¢.js¡¢.asp¡¢.xml¡¢.xsl¡¢.hta¡¢.css¡¢.wsh¡¢.cpp¡¢.c »ò .hµÈ¼°ÎÞºó׺ÃûµÄÎļþ¡£¶ÔÓÚÎҵȳÌÐò°®ºÃÕßÀ´ËµÊµÔÚÌ«²»·½±ãÁË£¬ËäÈ»ÓГÎı¾Ìæ»»´óʦ”µÈÈí¼þÄÜ×öÕ ......