Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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 healthy version release cadence and project activity because the last version was released less than 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.