Class HL7FileReader

  • All Implemented Interfaces:
    Closeable, AutoCloseable, HL7Reader

    public class HL7FileReader
    extends Object
    implements HL7Reader, Closeable
    Reads in HL7 messages in "file format".

    The "file format" is as follows:

    • Each message begins with an MSH segment
    • Each segment is terminated by a CR, LF, or CR-LF
    • Blank and whitespace-only lines are ignored
    • Lines starting with '#' are ignored
    • Constructor Detail

      • HL7FileReader

        public HL7FileReader​(Reader in)
        Constructor.
        Parameters:
        in - underlying reader
      • HL7FileReader

        public HL7FileReader​(InputStream in)
        Convenience constructor. Equivalent to:
        HL7FileReader(new InputStreamReader(in, StandardCharsets.ISO_8859_1))
        Parameters:
        in - underlying input stream