Hi also ich versuch grad mich mit den Eingabemöglichkeiten in Java rumzuspielen dabei hab ich in java.io readInt und die alles möglich Entdeckt das auch in der EprogIO vorkommt.
Jetzt denk ich mir verwend ma halt mal das nur:
Java-API
ZitatAlles anzeigen
readIntpublic final int readInt()
throws IOExceptionSee the general contract of the readInt method of DataInput.
Bytes for this operation are read from the contained input stream.
Specified by:
readInt in interface DataInputReturns:
the next four bytes of this input stream, interpreted as an int.
Throws:
EOFException - if this input stream reaches the end before reading four bytes.
IOException - if an I/O error occurs.
See Also:
FilterInputStream.in
soweit ok hab ich folgendes versucht:
int x = DataInput.readInt();
int x = DataInputStreamer();
und imm kommt die Compilermeldung
Zitat
non-static method readInt() cannot be referenced from a static context
int x = DataInputStream.readInt();
Könnte mir da jemand aufklärung geben wie ich von meiner static Methode auf diese zugreifen kann? weil mein Büchlein hült sich darüber in schweigen.