All Projects → jcabi → Jcabi Xml

jcabi / Jcabi Xml

Licence: other
Java XML Parsing, Transforming, Printing, and Validating

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Jcabi Xml

Fhir.js
Node.JS library for serializing/deserializing FHIR resources between JS/JSON and XML using various node.js XML libraries
Stars: ✭ 61 (-28.24%)
Mutual labels:  xml
Skin.refocus
reFocus, a skin for Kodi
Stars: ✭ 72 (-15.29%)
Mutual labels:  xml
Easyflipview
💳 A quick and easy flip view through which you can create views with two sides like credit cards, poker cards etc.
Stars: ✭ 1,221 (+1336.47%)
Mutual labels:  xml
Ohloh api
Ohloh API examples
Stars: ✭ 64 (-24.71%)
Mutual labels:  xml
Jokeapi
A REST API that serves uniformly and well formatted jokes in JSON, XML, YAML or plain text format that also offers a great variety of filtering methods
Stars: ✭ 71 (-16.47%)
Mutual labels:  xml
Jsoup
jsoup: the Java HTML parser, built for HTML editing, cleaning, scraping, and XSS safety.
Stars: ✭ 9,184 (+10704.71%)
Mutual labels:  xml
Feedr
Use feedr to fetch the data from a remote url, respect its caching, and parse its data. Despite its name, it's not just for feed data but also for all data that you can feed into it (including binary data).
Stars: ✭ 56 (-34.12%)
Mutual labels:  xml
Hale
(Spatial) data harmonisation with hale studio (formerly HUMBOLDT Alignment Editor)
Stars: ✭ 84 (-1.18%)
Mutual labels:  xml
Markitdown.medusis.com
MarkItDown: retro-convert rich text to Markdown
Stars: ✭ 72 (-15.29%)
Mutual labels:  xml
Android Gpx Parser
A library to parse XML Gpx files, built for Android.
Stars: ✭ 79 (-7.06%)
Mutual labels:  xml
Countries States Cities Database
🌍 World countries, states, regions, provinces, cities, towns in JSON, SQL, XML, PLIST, YAML, and CSV. All Countries, States, Cities with ISO2, ISO3, Country Code, Phone Code, Capital, Native Language, Timezones, Latitude, Longitude, Region, Subregion, Flag Emoji, and Currency. #countries #states #cities
Stars: ✭ 1,130 (+1229.41%)
Mutual labels:  xml
Magento2 Import Export Sample Files
Default Magento 2 CE import / export CSV files & sample files for Firebear Improved Import / Export extension
Stars: ✭ 68 (-20%)
Mutual labels:  xml
Js Word
✒️ Word Processing Document Library
Stars: ✭ 1,203 (+1315.29%)
Mutual labels:  xml
Ediengine
Simple .NET EDI X12 Reader, Writer and Validator. EDI JSON Serialization and Deserialization. Written in C#
Stars: ✭ 61 (-28.24%)
Mutual labels:  xml
Internettools
XPath/XQuery 3.1 interpreter for Pascal with compatibility modes for XPath 2.0/XQuery 1.0/3.0, custom and JSONiq extensions, XML/HTML parsers and classes for HTTP/S requests
Stars: ✭ 82 (-3.53%)
Mutual labels:  xml
Junitparser
Parses JUnit/xUnit Result XML files with ease
Stars: ✭ 58 (-31.76%)
Mutual labels:  xml
Xmlparser
A low-level, pull-based, zero-allocation XML 1.0 parser.
Stars: ✭ 73 (-14.12%)
Mutual labels:  xml
Dbwebapi
(Migrated from CodePlex) DbWebApi is a .Net library that implement an entirely generic Web API (RESTful) for HTTP clients to call database (Oracle & SQL Server) stored procedures or functions in a managed way out-of-the-box without any configuration or coding.
Stars: ✭ 84 (-1.18%)
Mutual labels:  xml
Ofbiz Plugins
Apache OFBiz is an open source product for the automation of enterprise processes. It includes framework components and business applications for ERP, CRM, E-Business/E-Commerce, Supply Chain Management and Manufacturing Resource Planning. OFBiz provides a foundation and starting point for reliable, secure and scalable enterprise solutions.
Stars: ✭ 83 (-2.35%)
Mutual labels:  xml
Askxml
Run SQL statements on XML documents
Stars: ✭ 79 (-7.06%)
Mutual labels:  xml

EO principles respected here Managed by Zerocracy DevOps By Rultor.com

Build Status PDD status Build status Coverage Status Javadoc

jpeek report Maven Central

More details are here: xml.jcabi.com. Also, read this blog post: Java XML Parsing Made Easy.

It's a simple wrapper around DOM that makes XML parsing and printing easy and simple, for example:

XML xml = new XMLDocument("<orders><order id="4">Coffee to go</order></orders>");
String id = xml.xpath("//order/@id").get(0);
String name = xml.xpath("//order[@id=4]/text()").get(0);
System.out.println(xml.toString());

How to contribute?

Fork the repository, make changes, submit a pull request. We promise to review your changes same day and apply to the master branch, if they look correct.

Please run Maven build before submitting a pull request:

$ mvn clean install -Pqulice
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].