XML file size limit

Possible duplicate:
maximum size for XML files

I developed an application that uses an XML file as a data source. but I do not know any restrictions on the use of the xml file.

I want to know the limitations of the xml file according to the size of the xml data. because I searched on google and I got the result, since xml is not useful when the size of the xml data is not dependent on time, which can slow down your application. but i cannot find this xml data limit.

Can anybody help me?

thank....

+3
source share
4 answers

, , XML . XML , , .

XML . , . , - , XML, , .

, XML? , XML .

+1

, XML- , xml, ?

XML , XMLDocument.Load() XML . 10 xml 2000 xml, 2 IIS .

, XML , xmldocument.

+2

XmlReader, . xml , . , XmlDocument OR XDocument ( LINQ), XML , , ( , #, UTF-16, 2 char, UTF-8, 1 "West-World" char (A-Za-z0-9 ). XmlElement XmlAttributes . XmlSerialier , Xml "" ( ), , ( , , )

+1

no restrictions. If you are reading a large .xml file, this takes longer. if you do not want to slow down your application, just use the powerful xml parsing (rapidxml, which is used in the boost library). Or you can use binary usage data.

0
source

Source: https://habr.com/ru/post/1793200/


All Articles