项目作者: beanio

项目描述 :
BeanIO 3, a Java library for marshalling and unmarshalling bean objects from XML, CSV, delimited and fixed length stream formats.
高级语言: Java
项目地址: git://github.com/beanio/beanio.git
创建时间: 2015-03-27T16:00:18Z
项目社区:https://github.com/beanio/beanio

开源协议:Apache License 2.0

下载


BeanIO " class="reference-link"> BeanIO Java CI Maintainability Rating Security Rating Coverage

A Java library for marshalling and unmarshalling bean objects from XML, CSV, delimited and fixed length stream formats.

Installation

If you’re coming from BeanIO 2.x, please note the new groupId com.github.beanio. Package names remain the same as
before (org.beanio.*).

Maven


To use snapshot versions, configure the following repository:

xml <repositories> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>false</enabled> </releases> </repository> </repositories>

Add the following dependency to your pom.xml:

  1. <dependency>
  2. <groupId>com.github.beanio</groupId>
  3. <artifactId>beanio</artifactId>
  4. <version>3.2.1</version>
  5. </dependency>

Gradle


To use snapshot versions, configure the following repository:

groovy repositories { maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots' } }

Add the following dependency to your build.gradle:

  1. implementation 'com.github.beanio:beanio:3.2.1'

What’s new in v3?

See changelog.txt

Project status

This is a fork of the original BeanIO library. It combines :

The website for version 3.x is available at https://beanio.github.io.

The website for version 2.x is available at http://www.beanio.org.