Skip to content
#

parsing-library

Here are 143 public repositories matching this topic...

LeoColman
LeoColman commented Dec 10, 2019

The default usage of the API is

val fileInputStream: InputStream = getFileInputStream()

fixedLengthFileParser<MyUserRecord>(fileInputStream) {
    MyUserRecord(
        field(0, 30, Padding.PaddingRight(' ')),
        field(30, 39, Padding.PaddingLeft('0')),
        field(39, 49)
    )    
}

In this case, we'll use the fileInputStream, but won't close it. When using a method

enhancement good first issue

Improve this page

Add a description, image, and links to the parsing-library topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the parsing-library topic, visit your repo's landing page and select "manage topics."

Learn more