Registry / serialization / xmlpull

xmlpull

JSON →
library1.1.3.4ajavamavenunverified

XML Pull Parser is a streaming XML parser for Java, providing efficient parsing of XML documents.

<dependency> <groupId>xmlpull</groupId> <artifactId>xmlpull</artifactId> <version>1.1.3.4a</version> </dependency>
INSTALL
IMPORT
SIG · XMLPULL
X
xmlpull
serializationjavav1.1.3.4a
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

XmlPullParser
✓ org.xmlpull.v1.XmlPullParser

Minimal usage of XML Pull Parser

import org.xmlpull.v1.XmlPullParser; import org.xmlpull.v1.XmlPullParserFactory; public class Example { public static void main(String[] args) throws Exception { XmlPullParserFactory factory = XmlPullParserFactory.newInstance(); XmlPullParser parser = factory.newPullParser(); parser.setInput(new java.io.StringReader("<root/>")); int eventType = parser.getEventType(); System.out.println("Event: " + eventType); } }
Debug
Known issues
gotchaXmlPullParser is not thread-safe; do not share instances across threads.
fix
Create a new parser instance per thread or synchronize access.
affects: >=1.0.0
Upgrade
Version history
1.1.3.4alatest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
23 hits · last 30 days
node
20
OpenAI (training)
1
Resources
xmlpull — mvn dependency:get xmlpull · libregistry