Schnittstelle DataReader

Alle bekannten Implementierungsklassen:
BinaryFileDataReader, ObjectDataReader, PlainTextFileDataReader

public interface DataReader
Describes generic ways to read data from a DataInputStream.
  • Methodenübersicht Linksymbol

    Modifizierer und Typ
    Methode
    Beschreibung
    double
     
    int
     
     
  • Methodendetails Linksymbol

    • readDouble Linksymbol

      double readDouble() throws IOException
      Gibt zurück:
      Reads and returns a double value.
      Löst aus:
      IOException - Thrown if IO errors occurred during read operation.
    • readInt Linksymbol

      int readInt() throws IOException
      Gibt zurück:
      Reads and returns an int value.
      Löst aus:
      IOException - Thrown if IO errors occurred during read operation.
    • readUTF Linksymbol

      String readUTF() throws IOException
      Gibt zurück:
      Reads and returns UTF-encoded characters.
      Löst aus:
      IOException - Thrown if IO errors occurred during read operation.