Tagged Questions
An XML parser goes through XML trees and extracts the information
29
votes
2answers
15k views
iPhone Development - XMLParser vs. libxml2 vs. TouchXML
I cannot find comparison of these parsing technique. Which one is most commonly used?
Regards.
Mustafa
11
votes
4answers
358 views
When should I choose SAX over StAX?
Streaming xml-parsers like SAX and StAX are faster and more memory efficient than parsers building a tree-structure like DOM-parsers. SAX is a push parser, meaning that it's an instance of the ...
11
votes
2answers
266 views
Which Perl modules for good for data munging?
Nine years ago when I started to parsing HTML and free text with Perl I read the classic Data Munging with Perl. Does someone know if David is planning to update the book or if there are similar books ...
10
votes
2answers
12k views
jQuery XML Parsing/Traversing
I have the following XML-
<rows>
<row id="5">
<cell>Item1</cell>
<attrs>
<attr>
<id>1</id>
...
8
votes
11answers
2k views
Better way to detect XML?
Currently, i have the following c# code to extract a value out of text. If its xml, i want the value within it - otherwise, if its not xml, it can just return the text itself.
String data = "..."
...
6
votes
2answers
46 views
Can JAXB initialize values in base classes?
I am working on a Scala project, and we want to use XML to initialize our objects with JAXB (not Spring). I have a hierarchy where more data members get added in the subclasses. A simple example would ...
6
votes
2answers
218 views
Design/Implementation advice on XML Parsing with multiple connections/feeds/views
Starting my first iOS project and wanted to advice on how to structure the application.
The app pulls a XML feed, parses it out and displays a list representing the items in the XML feed. When ...
6
votes
1answer
400 views
Noob question about DOMDocument in php
Hi I'm just starting reading documentation adn examples about DOM, for crawling and parsing, I'm used to do this with get_content, but it's time to change =D for a new project.
I have a div, like
...
6
votes
4answers
2k views
lxml etree xmlparser namespace problem
I have an xml doc that I am trying to parse using Etree.lxml
<Envelope xmlns="http://www.xxx.com/zzz/yyy">
<Header>
<Version>1</Version>
</Header>
<Body>
...
6
votes
3answers
900 views
Parallel XML Parsing in Java
I'm writing an application which processes a lot of xml files (>1000) with deep node structures. It takes about six seconds with with woodstox (Event API) to parse a file with 22.000 Nodes.
The ...
6
votes
1answer
507 views
How do I combine results from zip-filter queries on an xml tree in Clojure?
I want to combine the results of three zip-filter queries on an xml tree. The XML I am parsing looks like this:
<someroot>
<publication>
<contributors>
...
6
votes
2answers
2k views
How can I get Nokogiri to parse and return an XML document?
A sample of some oddness:
#!/usr/bin/ruby
require 'rubygems'
require 'open-uri'
require 'nokogiri'
print "without read: ", Nokogiri(open('http://weblog.rubyonrails.org/')).class, "\n"
print "with ...
5
votes
1answer
78 views
XML Syntax when Using Colon (:), in Tags
I am working on a mobile application and have to read a xml feed and parse the information. There it has a special tag as this <dc:creator> Jonethon Owens </dc:creator>
In C# I am using ...
5
votes
2answers
479 views
Use jsoup to parse XML - prevent jsoup from “cleaning” <link> tags
In most case, I have no problem with using jsoup to parse XML. However, if there are <link> tags in the XML document, jsoup will change <link>some text here</link> to <link ...
5
votes
1answer
629 views
Parsing Mac XML PList into something readable
I am trying to pull data from XML PList (Apple System Profiler) files and read it into a in-memory database, then turning it into something readable on Windows machines.
The problem is that the ...
5
votes
3answers
85 views
What are the major methods / libraries available for parsing XML?
I'm performing a trade study evaluating various methods for parsing XML for a large system. I'm looking at both analytical and actual relative performance (space & time) on multiple platforms ...
5
votes
1answer
130 views
Printing Attribute Values in python-amara
I'm trying to parse an xml file with using python-amara.
doc = amara.parse('h.xml')
assert doc.xml_type == tree.entity.xml_type
m = doc.xml_children[0]
print m
When I do this it gives
...
5
votes
1answer
2k views
Howto let the SAX parser determine the encoding from the xml declaration?
I'm trying to parse xml files from different sources (over which I have little control). Most of the them are encoded in UTF-8 and don't cause any problems using the following snippet:
...
5
votes
5answers
2k views
How to remove accent characters from an InputStream
I am trying to parse a Rss2.0 feed on Android using a Pull parser.
XmlPullParser parser = Xml.newPullParser();
parser.setInput(url.open(), null);
The prolog of the feed XML says the encoding is ...
5
votes
6answers
2k views
C# - Parse malformed XML
I'm trying to load a piece of (possibly) malformed HTML into an XMLDocument object, but it fails with XMLExceptions... since there are extra opening/closing tags, and malformed XML tags such as ...
4
votes
7answers
96 views
How to read properties from xml file with java?
I have the following xml file:
<resources>
<resource id="res001">
<property name="propA" value="A" />
<property name="propB" value="B" />
...
4
votes
4answers
216 views
Parsing XML / RSS from URL using Java Script
Hi i want to parse xml/rss from a live url like http://rss.news.yahoo.com/rss/entertainment using pure Java Script(not jquery). I have googled a lot. Nothing worked for me. can any one help with a ...
4
votes
2answers
143 views
What's the status of phobos' std.xml
I'm working on the beginnings of porting my php based OOP web framework to the d language and I'm having some trouble figuring out if it is safe to rely on phobos' std.xml classes to read xml from ...
4
votes
1answer
52 views
Processing optional xml attributes in Scala
I have code that reads an XML file. Some of the attributes of elements that I need to process are optional. I am trying to use Option[T] to manage them. I have written the following to pimp the ...
4
votes
1answer
69 views
How to prevent XML parsing errors being written to System.err (stderr)?
I am writing some unit tests that are deliberately passing bad strings to the Java DOM XML parser.
E.g.
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = ...
4
votes
1answer
172 views
How to efficiently store this parsed XML document in MySQL Database using Python?
Following is the XML file : book.xml
<?xml version="1.0" ?>
<!--Sample XML Document-->
<bookstore>
<book _id="E7854">
<title>
Sample XML Book
...
4
votes
1answer
253 views
XML query/modify problem in SQL server 2008 r2
I'm fairly new to SQL and I'm trying to filter and change the values inside of column that holds an XML document for a purchased order.
Here's an example of what the XML document looks like and what ...
4
votes
1answer
313 views
xpath find node that does not contain child
I'm trying to create some xpath that will find all a tags that do not contain img tags, so that something such as
<a href="http://aol.com">link</a>
matches, but
<a ...
4
votes
4answers
268 views
Sanitizing an SVG document by whitelisting elements
I want to extract around 20 element types from some SVG doucments to form a new SVG.
rect, circle, polygon, text, polyline, basically a set of visual parts are in the white list.
Javascript, comments, ...
4
votes
1answer
252 views
Problems parsing XML with XSL in it
When trying to read my xml from a webpage i get: "Error: At line 8, column 23: unbound prefix"
Below is my xml:
<?xml version="1.0"?>
<outertag>
<innertag ...
4
votes
2answers
359 views
How do I extract the “href” attribute from an XML “link” tag using PHP?
I am stumped as to how I can extract the "href" attribute from the "link" tag from this bit of XML using my PHP parsing script. If it helps at all, I am trying to extract the URL of a particular post ...
4
votes
2answers
821 views
Where I can find a detailed comparison of Java XML frameworks?
I'm trying to choose an XML-processing framework for my Java projects, and I'm lost in names.. XOM, JDOM, etc. Where I can find a detailed comparison of all popular Java XML frameworks?
4
votes
7answers
265 views
Is there a declarative way to parse XML to Java objects?
I'm writing an import function of XML files to my Java application. I am using XOM to parse the XML files. The code for parsing the XML is not easy to understand, it is some hardcoded .getChild(3) and ...
3
votes
1answer
120 views
How to send SOAP request and Parse SOAP response in XML format in Android?
Am very new to Android apps development. In my new Android app i want to show some data from webservice. This means i have a SOAP message, i need to parse the data from SOAP response. In iPhone app i ...
3
votes
1answer
64 views
Parse Arabic XML in Android
I need to parse an XML. The problem is that the XML is in Arabic.
eg:
<?xml version="1.0"?>
<ROWSET>
<ROW>
<شهر>1</شهر>
<فصل>20111</فصل>
...
3
votes
1answer
98 views
lxml.html.tostring re-ordered doctype and xml tags when printing
Imagine I have a file test.html with content,
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" ...
3
votes
1answer
79 views
Reducing memory footprint while using large XML DOM's in Java
Good afternoon,
I have tried my best to answer this question myself from research and reading similar questions on Stackoverflow and similar sites, but two weeks on, time is getting short and I am ...
3
votes
3answers
73 views
getting specific object of xml which can be parsed using XStream
I'm new to XML parsing and want to convert XML file resulting from a web service to list of POJOs. as i have done some work with JSon and found it very easy to work with. while in the case of XML ...
3
votes
1answer
41 views
Populating textview dynamically and related to another autocomplete textview
Ok here is the thing. My application has one autocomplete textview and under it a textview. In the autocomplete textview I've managed successfully to get employee names. I keep the list of employee ...
3
votes
2answers
147 views
oBix (xml) client for Delphi
Is there a oBix client library toolkit for Delphi?
oBix is a XML web-server/client standard.
See: http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=obix
And: ...
3
votes
1answer
61 views
php Error: XML or text declaration not at start of entity Source
whenever I use the following code in PHP files , it gives me the error (Error: XML or text declaration not at start of entity
Source)
<?xml version='1.0' encoding='utf-8'?>
I don't know what ...
3
votes
2answers
197 views
XML Parsing: Element Tree (etree) vs. minidom
I've been using minidom to parse XML for years. Now I've suddenly learned about Element Tree. My question which is better for parsing? That is:
Which is faster?
Which uses less memory?
Does either ...
3
votes
5answers
264 views
Parsing HTML content to use with iPhone app
I don't even know if the title for this question is appropriate, since I'm really lost and need some advice, a starting point to what I need to accomplish.
My iPhone app plays audio streamed from the ...
3
votes
1answer
65 views
With libxml, how to get the character position of a given element or attribute in the source xml file?
With libxml2, we can use xmlGetLineNo to get the line number in which a node appears in the source XML file.
But how to get character positions of a given element and a given attribute? I need both ...
3
votes
1answer
37 views
Fetching Xml Attributes
I have a Xml such as below:
<Phrase Entry="ID">
<Ans number="1">
<Identification LastName="Bornery" Name="John" Age="23"/>
<Identification LastName="Grify" Name="Johnson" ...
3
votes
3answers
605 views
Valid XML file gives “failed to parse” error in Android ADT
I have made a XML file:
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
...
3
votes
3answers
187 views
how to sort values with XSLT?
I have an XML similar to this:
<Test>
<grapes>
<a>TypeA</a>
<b>value1</b>
</grapes>
<oranges>
<a>TypeB</a>
...
3
votes
1answer
292 views
Groovy XmlSlurper vs XmlParser
I searched for a while on this topic and found some results too, which I am mentioning at the end of post. Can someone help me precisely answer these three questions for the cases listed below them?
...
3
votes
1answer
80 views
Storing specific XML node values with R's xmlEventParse
I have a big XML file which I need to parse with xmlEventParse in R. Unfortunately on-line examples are more complex than I need, and I just want to flag a matching node tag to store the matched node ...
3
votes
4answers
273 views
How do I write a Parser in C#?
How do I go about writing a Parser (Recursive Descent?) in C#? For now I just want a simple parser that parser arithmetic expressions (and reads variables?). Though later I intend to write an xml and ...