X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=nxtOSEK%2Flejos_nxj%2Fdocs%2Fapidocs%2Fjava%2Fio%2FFileInputStream.html;fp=nxtOSEK%2Flejos_nxj%2Fdocs%2Fapidocs%2Fjava%2Fio%2FFileInputStream.html;h=0e19194b2f8ea08104e5b341adcd9d2dccf4b657;hb=8f6f0ffd2e250519dddcc87d1782c37bfc432db3;hp=0000000000000000000000000000000000000000;hpb=1f862745fc9ba615c56ab7233ba19ca7ffd7ddb7;p=nxt-jsp%2Flejos_nxj.git diff --git a/nxtOSEK/lejos_nxj/docs/apidocs/java/io/FileInputStream.html b/nxtOSEK/lejos_nxj/docs/apidocs/java/io/FileInputStream.html new file mode 100644 index 0000000..0e19194 --- /dev/null +++ b/nxtOSEK/lejos_nxj/docs/apidocs/java/io/FileInputStream.html @@ -0,0 +1,300 @@ + + + + + + +FileInputStream (leJOS NXT API documentation) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +java.io +
+Class FileInputStream

+
+java.lang.Object
+  extended by java.io.InputStream
+      extended by java.io.FileInputStream
+
+
+
+
public class FileInputStream
extends InputStream
+ + +

+


+ +

+ + + + + + + + + + + +
+Constructor Summary
FileInputStream(File f) + +
+           
+  + + + + + + + + + + + + + + + +
+Method Summary
+ intread() + +
+          Reads the next byte of data from the input stream.
+ voidreset() + +
+          resets pointers so next read() is from the start of the file;
+ + + + + + + +
Methods inherited from class java.io.InputStream
available, close, mark, markSupported, read, read, skip
+ + + + + + + +
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+FileInputStream

+
+public FileInputStream(File f)
+
+
+ + + + + + + + +
+Method Detail
+ +

+read

+
+public int read()
+         throws IOException
+
+
Description copied from class: InputStream
+
Reads the next byte of data from the input stream. The value byte is + returned as an int in the range 0 to + 255. If no byte is available because the end of the stream + has been reached, the value -1 is returned. This method + blocks until input data is available, the end of the stream is detected, + or an exception is thrown. + +

A subclass must provide an implementation of this method. +

+

+
Specified by:
read in class InputStream
+
+
+ +
Returns:
the next byte of data, or -1 if the end of the + stream is reached. +
Throws: +
IOException - if an I/O error occurs.
+
+
+
+ +

+reset

+
+public void reset()
+
+
resets pointers so next read() is from the start of the file; +

+

+
Overrides:
reset in class InputStream
+
+
+
See Also:
InputStream.mark(int), +IOException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + +