
Product
Announcing Precomputed Reachability Analysis in Socket
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
io.github.irgaly.xml:original-characters-stax
Advanced tools
A Stax Parser Wrapper with original texts from input XML.
A Stax Parser Wrapper with original texts from input XML.
This library is useful to parse and modify XML, with preserving original characters and original XML structures.
exmple: preserving spaces and indent tabs, don't extract &#{unicode};
, don't replace >
with >
, don't replace XML empty tag...
This is a simple wrapper to Woodstox Stax2 XML Parser.
This library is published to Maven Central Repository.
Ensure mavenCentral()
is declared.
settings.gradle.kts
dependencyResolutionManagement {
repositories {
//...
mavenCentral()
}
}
Add dependencies.
build.gradle.kts
dependencies {
implementation("io.github.irgaly.xml:original-characters-stax:1.1.0")
}
Then use library!
OriginalCharactersStaxXml class sample.
This class is a simple wrapper class to Woodstox's WstxEventReader class.
val inputStream = File("input.xml").inputStream()
val parser = OriginalCharactersStaxXmlParser(inputStream)
while (parser.hasNext()) {
val event = parser.nextEvent()
println("original text:[${event.originalText}]")
}
parser.close() // parser closes inputStream too.
parser.nextEvent() returns XmlEvent, that has both of Stax original Event and XML original Text.
event.event // Stax2's XMLEvent2
event.originalText // Original XML's Texts
That sample code's input and output is below.
input.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- header comment -->
<resources>
<!-- comment1 -->
<reference>' &</reference>
<surrogate>🚭</surrogate>
<empty></empty>
</resources>
<!-- footer comment -->
outputs
original text:[<?xml version="1.0" encoding="utf-8"?>]
original text:[
]
original text:[<!-- header comment -->]
original text:[
]
original text:[<resources>]
original text:[
]
original text:[<!-- comment1 -->]
original text:[
]
original text:[<reference>]
original text:[' &]
original text:[</reference>]
original text:[
]
original text:[<surrogate>]
original text:[🚭]
original text:[</surrogate>]
original text:[
]
original text:[<empty>]
original text:[</empty>]
original text:[
]
original text:[</resources>]
original text:[
]
original text:[<!-- footer comment -->]
original text:[]
FAQs
Unknown package
We found that io.github.irgaly.xml:original-characters-stax demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.