青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

牽著老婆滿街逛

嚴以律己,寬以待人. 三思而后行.
GMail/GTalk: yanglinbo#google.com;
MSN/Email: tx7do#yahoo.com.cn;
QQ: 3 0 3 3 9 6 9 2 0 .

TinyXml Documentation

TinyXml Documentation

2.3.2

TinyXml

TinyXml is a simple, small, C++ XML parser that can be easily integrating into other programs.

What it does.

In brief, TinyXml parses an XML document, and builds from that a Document Object Model (DOM) that can be read, modified, and saved.

XML stands for "eXtensible Markup Language." It allows you to create your own document markups. Where HTML does a very good job of marking documents for browsers, XML allows you to define any kind of document markup, for example a document that describes a "to do" list for an organizer application. XML is a very structured and convenient format. All those random file formats created to store application data can all be replaced with XML. One parser for everything.

The best place for the complete, correct, and quite frankly hard to read spec is at http://www.w3.org/TR/2004/REC-xml-20040204/. An intro to XML (that I really like) can be found at http://skew.org/xml/tutorial.

There are different ways to access and interact with XML data. TinyXml uses a Document Object Model (DOM), meaning the XML data is parsed into a tree objects that can be browsed and manipulated, and then written back to disk. You can also construct an XML document from scratch with C++ objects and write this to disk (or another output stream.)

TinyXml is designed to be easy and fast to learn. It is two headers and four cpp files. Simply add these to your project and off you go. There is an example file - xmltest.cpp - to get you started.

TinyXml is released under the ZLib license, so you can use it in open source or commercial code. The details of the license are at the top of every source file.

TinyXml attempts to be a flexible parser, but with truly correct and compliant XML output. TinyXml should compile on any reasonably C++ compliant system. It does not rely on exceptions or RTTI. It can be compiled with or without STL support. TinyXml fully supports the UTF-8 encoding, and the first 64k character entities.

What it doesn't do.

It doesnt parse or use DTDs (Document Type Definitions) or XSLs (eXtensible Stylesheet Language.) There are other parsers out there (check out www.sourceforge.org, search for XML) that are much more fully featured. But they are also much bigger, take longer to set up in your project, have a higher learning curve, and often have a more restrictive license. If you are working with browsers or have more complete XML needs, TinyXml is not the parser for you.

The following DTD syntax will not parse at this time in TinyXml:

<!DOCTYPE Archiv [ <!ELEMENT Comment (#PCDATA)> ]>

because TinyXml sees this as a !DOCTYPE node with an illegally embedded !ELEMENT node. This may be addressed in the future.

Code Status.

TinyXml is mature, tested code. It is very stable. If you find bugs, please file a bug report is on the sourceforge web site (www.sourceforge.net/projects/tinyxml). We'll get them straightened out as soon as possible.

There are some areas of improvement; please check sourceforge if you are interested in working on TinyXml.

Features

Using STL

TinyXml can be compiled to use or not use STL. When using STL, TinyXml uses the std::string class, and fully supports std::istream, std::ostream, operator<<, and operator>>. Many API methods have both 'const char*' and 'const std::string&' forms.

When STL support is compiled out, no STL files are included whatsover. All the string classes are implemented by TinyXml itself. API methods all use the 'const char*' form for input.

Use the compile time #define:

TIXML_USE_STL

to compile one version or the other. This can be passed by the compiler, or set as the first line of "tinyxml.h".

Note: If compiling the test code in Linux, setting the environment variable TINYXML_USE_STL=YES/NO will control STL compilation. In the Windows project file, STL and non STL targets are provided. In your project, its probably easiest to add the line "#define TIXML_USE_STL" as the first line of tinyxml.h.

UTF-8

TinyXml supports UTF-8 allowing to manipulate XML files in any language. TinyXml also supports "legacy mode" - the encoding used before UTF-8 support and probably best described as "extended ascii".

Normally, TinyXml will try to detect the correct encoding and use it. However, by setting the value of TIXML_DEFAULT_ENCODING in the header file, TinyXml can be forced to always use one encoding.

TinyXml will assume Legacy Mode until one of the following occurs:

  1. If the non-standard but common "UTF-8 lead bytes" (0xef 0xbb 0xbf) begin the file or data stream, TinyXml will read it as UTF-8.
  2. If the declaration tag is read, and it has an encoding="UTF-8", then TinyXml will read it as UTF-8.
  3. If the declaration tag is read, and it has no encoding specified, then TinyXml will read it as UTF-8.
  4. If the declaration tag is read, and it has an encoding="something else", then TinyXml will read it as Legacy Mode. In legacy mode, TinyXml will work as it did before. It's not clear what that mode does exactly, but old content should keep working.

What happens if the encoding is incorrectly set or detected? TinyXml will try to read and pass through text seen as improperly encoded. You may get some strange results or mangled characters, however. In this case, you may want to force TinyXml to the correct mode.

You may force TinyXml to Legacy Mode by using LoadFile( TIXML_ENCODING_LEGACY ) or LoadFile( filename, TIXML_ENCODING_LEGACY ). You may force it to use legacy mode all the time by setting TIXML_DEFAULT_ENCODING = TIXML_ENCODING_LEGACY.

For English users, using English XML, UTF-8 is the same as low-ASCII. You don't need to be aware of UTF-8 or change your code in any way. You can think of UTF-8 as a "superset" of ASCII.

UTF-8 is not a double byte format. TinyXml does not use or directly support wchar, TCHAR, or Microsofts _UNICODE at this time.

For "high-ascii" languages - everything not English, pretty much - TinyXml can handle all languages, at the same time, as long as the XML is encoded in UTF-8. That can be a little tricky, older programs and operating systems tend to use the "default" or "traditional" code page. Many apps (and almost all modern ones) can output UTF-8, but older or stubborn (or just broken) ones still output text in the default code page.

For example, Japanese systems traditionally use SHIFT-JIS encoding. Text encoded as SHIFT-JIS can not be read by tinyxml. A good text editor can import SHIFT-JIS and then save as UTF-8.

The Skew.org link does a great job covering the encoding issue.

The test file "utf8test.xml" is an XML containing English, Spanish, Russian, and Simplified Chinese. (Hopefully they are translated correctly). The file "utf8test.gif" is a screen capture of the XML file, rendered in IE. Note that if you don't have the correct fonts (Simplified Chinese or Russian) on your system, you won't see output that matches the GIF file even if you can parse it correctly. Also note that (at least on my Windows machine) console output is in a Western code page, so that Print() or printf() cannot correctly display the file. This is not a bug in TinyXml - just an OS issue. No data is lost or destroyed by TinyXml. The console just doesn't render UTF-8.

Entities

TinyXml recognizes the pre-defined "character entities", meaning special characters. Namely:

	&amp;	&
	&lt;	<
	&gt;	>
	&quot;	"
	&apos;	'

These are recognized when the XML document is read, and translated to there UTF-8 equivalents. For instance, text with the XML of:

	Far &amp; Away

will have the Value() of "Far & Away" when queried from the TiXmlText object, and will be written back to the XML stream/file as an ampersand. Older versions of TinyXml "preserved" character entities, but the newer versions will translate them into characters.

Additionally, any character can be specified by its Unicode code point: The syntax "&#xA0;" or "&#160;" are both to the non-breaking space characher. Note that these will generally not be preserved on output: TinyXml will write the space to the output stream, not the character reference.

Streams

With TIXML_USE_STL on, TiXml has been modified to support both C (FILE) and C++ (operator <<,>>) streams. There are some differences that you may need to be aware of.

C style output:

  • based on FILE*
  • the Print() and SaveFile() methods

Generates formatted output, with plenty of white space, intended to be as human-readable as possible. They are very fast, and tolerant of ill formed XML documents. For example, an XML document that contains 2 root elements and 2 declarations, will still print.

C style input:

  • based on FILE*
  • the Parse() and LoadFile() methods

A fast, tolerant read. Use whenever you don't need the C++ streams.

C++ style ouput:

  • based on std::ostream
  • operator<<

Generates condensed output, intended for network transmission rather than readability. Depending on your system's implementation of the ostream class, these may be somewhat slower. (Or may not.) Not tolerant of ill formed XML: a document should contain the correct one root element. Additional root level elements will not be streamed out.

C++ style input:

  • based on std::istream
  • operator>>

Reads XML from a stream, making it useful for network transmission. The tricky part is knowing when the XML document is complete, since there will almost certainly be other data in the stream. TinyXml will assume the XML data is complete after it reads the root element. Put another way, documents that are ill-constructed with more than one root element will not read correctly. Also note that operator>> is somewhat slower than Parse, due to both implementation of the STL and limitations of TinyXml.

White space

The world simply does not agree on whether white space should be kept, or condensed. For example, pretend the '_' is a space, and look at "Hello____world". HTML, and at least some XML parsers, will interpret this as "Hello_world". They condense white space. Some XML parsers do not, and will leave it as "Hello____world". (Remember to keep pretending the _ is a space.) Others suggest that __Hello___world__ should become Hello___world.

It's an issue that hasn't been resolved to my satisfaction. TinyXml supports the first 2 approaches. Call TiXmlBase::SetCondenseWhiteSpace( bool ) to set the desired behavior. The default is to condense white space.

If you change the default, you should call TiXmlBase::SetCondenseWhiteSpace( bool ) before making any calls to Parse XML data, and I don't recommend changing it after it has been set.

Handles

Where browsing an XML document in a robust way, it is important to check for null returns from method calls. An error safe implementation can generate a lot of code like:

TiXmlElement* root = document.FirstChildElement( "Document" );
if ( root )
{
	TiXmlElement* element = root->FirstChildElement( "Element" );
	if ( element )
	{
		TiXmlElement* child = element->FirstChildElement( "Child" );
		if ( child )
		{
			TiXmlElement* child2 = child->NextSiblingElement( "Child" );
			if ( child2 )
			{
				// Finally do something useful.

Handles have been introduced to clean this up. Using the TiXmlHandle class, the previous code reduces to:

TiXmlHandle docHandle( &document );
TiXmlElement* child2 = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", 1 ).Element();
if ( child2 )
{
	// do something useful

Which is much easier to deal with. See TiXmlHandle for more information.

Row and Column tracking

Being able to track nodes and attributes back to their origin location in source files can be very important for some applications. Additionally, knowing where parsing errors occured in the original source can be very time saving.

TinyXml can tracks the row and column origin of all nodes and attributes in a text file. The TiXmlBase::Row() and TiXmlBase::Column() methods return the origin of the node in the source text. The correct tabs can be configured in TiXmlDocument::SetTabSize().

Using and Installing

To Compile and Run xmltest:

A Linux Makefile and a Windows Visual C++ .dsw file is provided. Simply compile and run. It will write the file demotest.xml to your disk and generate output on the screen. It also tests walking the DOM by printing out the number of nodes found using different techniques.

The Linux makefile is very generic and will probably run on other systems, but is only tested on Linux. You no longer need to run 'make depend'. The dependecies have been hard coded.

Windows project file for VC6

  • tinyxml: tinyxml library, non-STL
  • tinyxmlSTL: tinyxml library, STL
  • tinyXmlTest: test app, non-STL
  • tinyXmlTestSTL: test app, STL

Linux Make file

At the top of the makefile you can set:

PROFILE, DEBUG, and TINYXML_USE_STL. Details (such that they are) are in the makefile.

In the tinyxml directory, type "make clean" then "make". The executable file 'xmltest' will be created.

To Use in an Application:

Add tinyxml.cpp, tinyxml.h, tinyxmlerror.cpp, tinyxmlparser.cpp, and tinystr.cpp to your project or make file. That's it! It should compile on any reasonably compliant C++ system. You do not need to enable exceptions or RTTI for TinyXml.

How TinyXml works.

An example is probably the best way to go. Take:

	<?xml version="1.0" standalone=no>
	<!-- Our to do list data -->
	<ToDo>
		<Item priority="1"> Go to the <bold>Toy store!</bold></Item>
		<Item priority="2"> Do bills</Item>
	</ToDo>

Its not much of a To Do list, but it will do. To read this file (say "demo.xml") you would create a document, and parse it in:

	TiXmlDocument doc( "demo.xml" );
	doc.LoadFile();

And its ready to go. Now lets look at some lines and how they relate to the DOM.

<?xml version="1.0" standalone=no>

The first line is a declaration, and gets turned into the TiXmlDeclaration class. It will be the first child of the document node.

This is the only directive/special tag parsed by by TinyXml. Generally directive targs are stored in TiXmlUnknown so the commands wont be lost when it is saved back to disk.

<!-- Our to do list data -->

A comment. Will become a TiXmlComment object.

<ToDo>

The "ToDo" tag defines a TiXmlElement object. This one does not have any attributes, but does contain 2 other elements.

<Item priority="1"> 

Creates another TiXmlElement which is a child of the "ToDo" element. This element has 1 attribute, with the name "priority" and the value "1".

Go to the

A TiXmlText. This is a leaf node and cannot contain other nodes. It is a child of the "Item" TiXmlElement.

<bold>

Another TiXmlElement, this one a child of the "Item" element.

Etc.

Looking at the entire object tree, you end up with:

TiXmlDocument				"demo.xml"
	TiXmlDeclaration		"version='1.0'" "standalone=no"
	TiXmlComment			" Our to do list data"
	TiXmlElement			"ToDo"
		TiXmlElement		"Item"		Attribtutes: priority = 1
			TiXmlText		"Go to the "
			TiXmlElement    "bold"
				TiXmlText	"Toy store!"
	TiXmlElement			"Item"		Attributes: priority=2
		TiXmlText			"bills"

Documentation

The documentation is build with Doxygen, using the 'dox' configuration file.

License

TinyXml is released under the zlib license:

This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.

Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:

1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.

2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.

3. This notice may not be removed or altered from any source distribution.

References

The World Wide Web Consortium is the definitive standard body for XML, and there web pages contain huge amounts of information.

The definitive spec: http://www.w3.org/TR/2004/REC-xml-20040204/

I also recommend "XML Pocket Reference" by Robert Eckstein and published by OReilly...the book that got the whole thing started.

Contributors, Contacts, and a Brief History

Thanks very much to everyone who sends suggestions, bugs, ideas, and encouragement. It all helps, and makes this project fun. A special thanks to the contributors on the web pages that keep it lively.

So many people have sent in bugs and ideas, that rather than list here we try to give credit due in the "changes.txt" file.

TinyXml was originally written be Lee Thomason. (Often the "I" still in the documenation.) Lee reviews changes and releases new versions, with the help of Yves Berquin and the tinyXml community.

We appreciate your suggestions, and would love to know if you use TinyXml. Hopefully you will enjoy it and find it useful. Please post questions, comments, file bugs, or contact us at:

www.sourceforge.net/projects/tinyxml

Lee Thomason, Yves Berquin

posted on 2006-04-17 16:15 楊粼波 閱讀(1387) 評論(0)  編輯 收藏 引用 所屬分類: 文章收藏

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美成人亚洲成人| 久久久999国产| 日韩视频中午一区| 欧美日韩免费视频| 亚洲自拍偷拍一区| 久久久av水蜜桃| 亚洲精品综合在线| 在线亚洲欧美视频| 国产一区二区三区在线播放免费观看 | 久久久一区二区| 亚洲国产天堂久久综合| 亚洲精品国产精品国自产在线| 欧美久久久久免费| 午夜久久久久久久久久一区二区| 性伦欧美刺激片在线观看| 亚洲国产精品黑人久久久| 99国产麻豆精品| 国模私拍视频一区| 亚洲电影下载| 国产欧美韩国高清| 欧美国产日韩一区二区在线观看| 欧美人成在线| 久久全球大尺度高清视频| 欧美激情91| 久久久爽爽爽美女图片| 欧美精品自拍| 麻豆成人小视频| 国产精品美女久久久久av超清| 开元免费观看欧美电视剧网站| 久久久www成人免费无遮挡大片| 久久精品国产精品| 可以免费看不卡的av网站| 一区二区成人精品| 欧美在线视频全部完| 99国产精品国产精品久久| 亚洲自拍偷拍福利| 亚洲精品社区| 久久精品国产精品亚洲综合| 一区二区三区视频免费在线观看| 久久久伊人欧美| 亚洲综合大片69999| 欧美成人在线免费观看| 久久久久九九九| 国产精品视频网| 日韩午夜av| 91久久夜色精品国产网站| 欧美一区91| 午夜一区二区三区不卡视频| 欧美国内亚洲| 欧美激情亚洲| 伊人成人开心激情综合网| 亚洲欧美视频在线| 午夜亚洲伦理| 国产精品成人久久久久| 亚洲国产一区二区三区在线播| 国产一区二区中文字幕免费看| 一区二区不卡在线视频 午夜欧美不卡'| 亚洲高清123| 久久人人超碰| 美女免费视频一区| 亚洲高清不卡一区| 欧美不卡高清| 亚洲精品一二三| 一区二区日韩伦理片| 欧美极品一区| 日韩亚洲欧美精品| 亚洲午夜影视影院在线观看| 欧美日韩1080p| 日韩视频专区| 欧美一区二区三区精品| 国产亚洲成av人在线观看导航| 亚洲一区欧美| 久久精品99| 一区在线影院| 欧美成人官网二区| 亚洲国产视频一区二区| 亚洲少妇一区| 国产麻豆91精品| 久久成人免费网| 免费在线欧美黄色| 亚洲精品一级| 欧美午夜免费电影| 欧美一区二区三区免费视频| 久久久久九九九九| 亚洲精品在线电影| 国产精品v欧美精品∨日韩| 亚洲影院一区| 免费观看成人网| 日韩亚洲不卡在线| 国产精品丝袜白浆摸在线| 欧美一级视频免费在线观看| 久久亚洲免费| 在线综合+亚洲+欧美中文字幕| 国产精品色婷婷久久58| 久久久国产一区二区三区| 亚洲国产精品高清久久久| 欧美日韩人人澡狠狠躁视频| 亚洲一区国产视频| 欧美国产1区2区| 亚洲欧美日韩在线综合| 好看的亚洲午夜视频在线| 欧美另类极品videosbest最新版本 | 亚洲美女免费精品视频在线观看| 亚洲欧美日韩视频一区| 在线观看国产成人av片| 欧美日韩一级片在线观看| 久久精品国产亚洲高清剧情介绍| 亚洲成人在线视频播放| 一区二区日韩伦理片| 久久精品成人| 亚洲一区二区三区在线播放| 激情综合网激情| 国产麻豆91精品| 欧美日韩免费一区二区三区视频| 久久狠狠婷婷| 亚洲欧美国产77777| 亚洲激情成人网| 另类天堂av| 欧美一区二区三区精品电影| 亚洲免费观看在线视频| 尤妮丝一区二区裸体视频| 国产精品欧美日韩久久| 欧美日韩国产成人在线观看| 久久免费黄色| 久久精品国产亚洲一区二区| 亚洲综合二区| 中文欧美在线视频| 99日韩精品| 亚洲人成网站精品片在线观看| 久久久蜜桃精品| 久久成人免费视频| 性伦欧美刺激片在线观看| 亚洲私人黄色宅男| 亚洲一区二区三区免费在线观看| 亚洲欧洲精品一区二区三区不卡| 精品动漫一区二区| 狠狠爱综合网| 伊人夜夜躁av伊人久久| 国内自拍一区| 一区在线免费| 亚洲国产精品va| 亚洲国产日韩一区| 91久久香蕉国产日韩欧美9色| 亚洲国产精品成人久久综合一区| 精品91在线| 亚洲黄色在线观看| 亚洲国产一区在线观看| 91久久嫩草影院一区二区| 亚洲免费观看| 正在播放亚洲一区| 亚洲欧美日韩综合| 久久精品人人爽| 美女国内精品自产拍在线播放| 麻豆国产精品一区二区三区| 欧美成人一区二区三区| 亚洲国产99| 一区二区三区www| 欧美亚洲自偷自偷| 久久综合色播五月| 欧美国产一区二区在线观看| 欧美日韩在线播放一区二区| 欧美午夜电影在线| 国内精品嫩模av私拍在线观看| 亚洲电影专区| 亚洲午夜激情| 久久精品国产久精国产一老狼| 免费成人高清在线视频| 日韩午夜三级在线| 亚洲欧美国产高清va在线播| 久久综合国产精品台湾中文娱乐网| 免费在线视频一区| 国产精品毛片一区二区三区| 一区二区三区在线免费播放| 亚洲国内精品在线| 国产精品av一区二区| 国产视频亚洲精品| 亚洲黄网站黄| 久久国产精品久久国产精品| 欧美福利网址| 亚洲综合国产激情另类一区| 免费看亚洲片| 国产精品日本| 最新高清无码专区| 新狼窝色av性久久久久久| 亚洲福利在线观看| 香蕉成人久久| 欧美日韩伦理在线| 在线观看日韩国产| 先锋影音国产精品| 亚洲人成在线影院| 久久美女性网| 国产毛片一区二区| 一区二区日韩精品| 欧美激情中文不卡| 欧美亚洲综合网| 国产精品青草久久久久福利99| 亚洲福利视频专区| 久久嫩草精品久久久精品一| 亚洲一区影音先锋| 欧美色另类天堂2015|