MIOB / EDF4J

Java parser for edf format

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EDF4J

This is a Java-Parser for the file formats EDF and EDF+.

License

This project is licensed under the terms of the MIT license. See license.txt.

Usage

The parser is available in the file EDFParser.java

Example usage

String pathToEdfFile = "";
InputStream is = new BufferedInputStream(new FileInputStream(new File(pathToEdfFile)));
EDFParserResult result = EDFParser.parseEDF(is);

Example program

An example program is available in the file EDF.java. This example parse EDF (or EDF+) file and write it into several txt files.

About

Java parser for edf format

License:MIT License


Languages

Language:Java 100.0%