This is a Java-Parser for the file formats EDF and EDF+.
This project is licensed under the terms of the MIT license. See license.txt.
The parser is available in the file EDFParser.java
String pathToEdfFile = "";
InputStream is = new BufferedInputStream(new FileInputStream(new File(pathToEdfFile)));
EDFParserResult result = EDFParser.parseEDF(is);
An example program is available in the file EDF.java. This example parse EDF (or EDF+) file and write it into several txt files.