Very Large XML Files (where to get?)

C

coredumper

Anyone know where I can download very large (30MB - 100+MB) "real
world" XML files?
 
G

Gerald Aichholzer

coredumper said:
Anyone know where I can download very large (30MB - 100+MB) "real
world" XML files?

why don't you just generate one? this can be done with a few
lines of code.

Gerald
 
?

=?ISO-8859-1?Q?J=FCrgen_Kahrs?=

Here are some:

http://www.research.att.com/sw/tools/xmill/experiments.html
why don't you just generate one? this can be done with a few
lines of code.

Indeed, that's what I usually do for testing.
For example, try this AWK script produces
well-formed XML data that some well-known
parsers can't read (in acceptable time).


# Let's see if a tag can have 10000 attributes.
BEGIN {
print "<?xml version='1.0' encoding='UTF-8'?>"
print "<root "
for (i=1; i<=10000; i++)
printf("a%d='%d'\n", i, i)
print "/>"
}
 
C

coredumper

sure easy enough to perl my way through, but i was hoping to ge
something that is being used for something, "real world" so to speak.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,078
Latest member
MakersCBDBlood

Latest Threads

Top