Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fr.dralagen:csv2xml

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fr.dralagen:csv2xml

A parser csv file to xml file

  • 0.2.0
  • Source
  • Maven
  • Socket score

Version published
Maintainers
2
Source

csv2xml GitHub version Build Status

It's java converter to parse en csv file to xml file.

This parser is compatible with openDataWrapper the lodpaddle wrapper

Maven dependency

<dependency>
    <groupId>fr.dralagen</groupId>
    <artifactId>csv2xml</artifactId>
    <version>0.1</version>
</dependency>

Example of parser:

Input file

name;description;date
element 1;It's my first element;22/10/2014
element 2;;24/10/2014
third element;It's my third element;

Output file

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document>
<data>
<element>
<name>element 1</name>
<description>It's my first element</description>
<date>22/10/2014</date>
</element>
<element>
<name>element 2</name>
<description/>
<date>24/10/2014</date>
</element>
<element>
<name>third element</name>
<description>It's my third element</description>
<date/>
</element>
</data>
</document>

FAQs

Package last updated on 22 Nov 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc