1、首先得到xml路径:
String xmlurl=ReadConfigXml.class.getResource("").getPath().replace("/WEB-INF/classes/com/common", "")+ "global/xml/dataConn.xml";
2、决定解析xml文件的方式,例如选择SAX方法:
//获取SAX工厂对象
SAXParserFactory factory = SAXParserFactory.newInstance();
factory.setNamespaceAware(false);
factory.setValidating(false);
//获取SAX解析
SAXParser parser = factory.newSAXParser();
File f = new File(filename);
DefaultHandler handler = new DefaultHandler(); //此处使用默认的解析器
parse.parse(f,handler);
如果此处使用其他解析器,必须继承DefaultHandler类。重写DefaultHandler类的startElement、characters、endElement方法。
具体完整代码如下:
class ConfigParser extends DefaultHandler {
////定义一个Properties 用来存放属性值
private Properties props;
private String currentSet;
private String currentName;
private StringBuffer currentValue = new StringBuffer();
//构建器初始化props
public ConfigParser() {
this.props = new Properties();
}
public Properties getProps() {
return this.props;
}
//定义开始解析元素的方法. 这里是将<xxx>中的名称xxx提取出来.
public void startElement(String uri, String localName, String qName, Attributes attributes)
throws SAXException {
currentValue.delete(0, currentValue.length());
this.currentName =qName;
}
//这里是将<xxx></xxx>之间的值加入到currentValue
public void characters(char[] ch, int start, int length) throws SAXException {
currentValue.append(ch, start, length);
}
//在遇到</xxx>结束后,将之前的名称和值一一对应保存在props中
public void endElement(String uri, String localName, String qName) throws SAXException {
props.put(qName.toLowerCase(), currentValue.toString().trim());
}
}
class ParseXML{
//定义一个Properties 用来存放属性值
private Properties props;
public Properties getProps() {
return this.props;
}
public void parse(String filename) throws Exception {
//将我们的解析器对象化
ConfigParser handler = new ConfigParser();
//获取SAX工厂对象
SAXParserFactory factory = SAXParserFactory.newInstance();
factory.setNamespaceAware(false);
factory.setValidating(false);
//获取SAX解析
SAXParser parser = factory.newSAXParser();
try{
//将解析器和解析对象xml联系起来,开始解析
parser.parse(new java.io.File(filename),handler);
//获取解析成功后的属性
props = handler.getProps();
}finally{
factory=null;
parser=null;
handler=null;
}
}
}
//读取系统Config信息
public class ReadConfigXml
{
private Properties props;
public ReadConfigXml(){
ParseXML myRead = new ParseXML();
try {
String xmlurl=ReadConfigXml.class.getResource("").getPath().replace("/WEB-INF/classes/com/common", "")+ "global/xml/dataConn.xml";
myRead.parse(xmlurl);
props = new Properties();
props = myRead.getProps();
} catch (Exception e) {
e.printStackTrace();
}
}
public String get(String Name){
return props.getProperty(Name);
}
public static void main(String[] g){
ReadConfigXml r = new ReadConfigXml();
r.get("txtfiledir");
}
}
分享到:
相关推荐
在本文中,我们将深入探讨如何使用 TinyXML 来读写 XML 文件,以及它在 Visual C++ 开发环境中的应用。 1. **TinyXML 的基本结构** TinyXML 提供了一系列类来表示 XML 文档的不同部分,如 `TiXmlDocument`(XML ...
本文将深入探讨C++中进行XML读取操作的库,并结合提供的“ReadXml”工程源码和动态链接库,解析其核心概念和使用方法。 一、C++中的XML库选择 C++中处理XML的库主要有以下几种: 1. TinyXML:这是一个小型、易于...
在VC++(Visual C++)环境下,TinyXML提供了一种简单、轻量级的方式来读取和写入XML源文件,这在处理配置文件、保存游戏状态或与XML数据交换时非常有用。本篇文章将详细介绍如何在VC++项目中集成和使用TinyXML库来...
在IT领域,将SQLite3与XML结合使用可以实现数据的灵活读取和写入。 LIBXML 是一套用于处理XML文档的库,由GNU项目开发。它提供了解析XML、验证XML Schema、XPath支持以及XSLT转换等功能。在Python等编程语言中,...
`XmlTextReader`是一个高效的XML读取器,用于顺序读取XML文档。通过以下方式实例化和使用`XmlTextReader`: ```csharp using System.Xml; XmlTextReader reader = new XmlTextReader("*.xml"); while (reader....
使用TinyXML进行XML读写的一般步骤如下: 1. **加载XML文件**:使用`TiXMLDocument::LoadFile()`方法加载XML文件到内存中,如果加载成功,该方法将返回`true`。 2. **遍历XML树**:你可以通过`TiXmlElement`的`...
这里提到的工具就是针对MFC的一个XML读取工具,它基于TINY XML库,这是一个轻量级、易于使用的XML解析器。 TINY XML库是由李·萨瑟兰(Lee Satherling)开发的,其主要功能是解析XML文档并将其转换为C++对象结构,...
本文将深入探讨“XML读写帮助类”的相关知识点,包括XML的基本结构、解析方式、读写操作以及如何创建一个实用的Java XML助手类。 1. XML基本结构: - 元素(Element):XML文档的核心,如`<book>`,元素可以包含...
本人没分了,特别来分享一下,通用的XML读写工具类,同志们下下绝对不后悔
XML读取通常涉及以下步骤: 1. 创建TiXmlDocument对象并加载XML文件。 2. 使用LoadFile()或ReadFile()方法从磁盘加载XML文档。 3. 使用FirstChildElement()和FirstChildChild()等方法遍历XML结构。 4. 通过Value()...
XmlDocument允许加载XML文档并进行读写操作,而XmlNodeReader提供流式读取XML数据的方法。XmlWriter则用于生成XML文档。此外, LINQ to XML 提供了一种更直观的API来创建、查询和修改XML文档。 综上所述,这个...
本资源“winform 使用XML读写类型源码”显然是一个示例项目,展示了如何在WinForm应用中操作XML文件进行数据的读取和写入。XML(eXtensible Markup Language)是一种标记语言,广泛用于数据交换、配置存储等场景,因...
本文将深入探讨XML的读写操作,并结合给出的标签“源码”和“工具”,介绍如何在实际编程中处理XML文件。 1. XML基本结构 XML文档由元素(Element)、属性(Attribute)、文本内容(Text Content)等构成。元素是...
2. **XML读取**: - **解析XML文件**:使用`pugi::xml_document`类加载XML文件,例如`pugi::xml_parse_result result = doc.load_file("example.xml");` - **遍历XML树**:通过`pugi::xml_node`对象,可以访问XML...
以下是对XML读取及解析相关知识点的详细说明: 1. **XML结构**: - XML文档由一系列元素组成,每个元素都包含开始标签 `<tag>` 和结束标签 `</tag>`。 - 元素可以嵌套,形成层级结构。 - 文档开始和结束由`<?xml...
下面将详细阐述DOM模型、解析过程以及如何在Java中使用DOM进行XML读写。 DOM模型的核心概念是节点(Node)。XML文档的每个部分——元素(Element)、属性(Attribute)、文本(Text)等都被表示为一个节点对象。DOM...
XML读取** 读取XML文件主要通过XMLDocument类完成。以下是一个简单的例子: ```cpp #include "tinyxml.h" int main() { TiXmlDocument doc("example.xml"); if (!doc.LoadFile()) { std::cout !" ; return 1;...
1. **XML读取**: - 使用`XMLDocument`创建一个新实例,然后通过`LoadFromFile`方法加载XML文件。例如: ```delphi var Doc: TXMLDocument; begin Doc := TXMLDocument.Create(nil); Doc.LoadFromFile('path_...
在C#中,我们可以利用内置的System.Xml命名空间来处理XML文件的读写操作。下面将详细介绍C#中XML文件的读写相关知识点。 1. XML文件的读取 - **XmlDocument类**:这是C#中最常用的读取XML文件的类,通过`Load()`...
在XML读取部分,我们可以使用`QFile`打开XML文件,然后用`QDomDocument`解析文件内容。以下是一个简单的读取函数: ```cpp bool readXml(const QString& filePath) { QDomDocument doc; QFile file(filePath); ...