Uses of Class
java.io.IOException
-
-
Uses of IOException in java.io
Methods in java.io that throw IOException Modifier and Type Method Description int
InputStream. available()
Returns an estimated number of bytes that can be read or skipped without blocking for more input.void
Closeable. close()
Closes the object and release any system resources it holds.void
InputStream. close()
Closes this stream.void
OutputStream. close()
Closes this stream.void
Flushable. flush()
Flushes the object by writing out any buffered data to the underlying output.void
OutputStream. flush()
Flushes this stream.abstract int
InputStream. read()
Reads a single byte from this stream and returns it as an integer in the range from 0 to 255.int
InputStream. read(byte[] buffer)
Equivalent toread(buffer, 0, buffer.length)
.int
InputStream. read(byte[] buffer, int byteOffset, int byteCount)
Reads up tobyteCount
bytes from this stream and stores them in the byte arraybuffer
starting atbyteOffset
.void
InputStream. reset()
Resets this stream to the last marked location.void
OutputStream. write(byte[] buffer)
Equivalent towrite(buffer, 0, buffer.length)
.void
OutputStream. write(byte[] buffer, int offset, int count)
Writescount
bytes from the byte arraybuffer
starting at positionoffset
to this stream.abstract void
OutputStream. write(int oneByte)
Writes a single byte to this stream. -
Uses of IOException in org.deepjava.flink.subdevices
Methods in org.deepjava.flink.subdevices that throw IOException Modifier and Type Method Description int
FlinkUART. read()
Reads one byte from the UART.int
FlinkUART. read(byte[] buffer)
Reads the given number of bytes from the UART.int
FlinkUART. read(byte[] buffer, int off, int count)
Reads the given number of bytes from the UART.void
FlinkUART. write(byte b)
Writes a given byte into the transmit buffer.int
FlinkUART. write(byte[] buffer)
Writes a given number of bytes into the transmit buffer.int
FlinkUART. write(byte[] buffer, int off, int count)
Writes a given number of bytes into the transmit buffer. -
Uses of IOException in org.deepjava.runtime.mpc5200.driver
Methods in org.deepjava.runtime.mpc5200.driver that throw IOException Modifier and Type Method Description static int
UART3. read()
Reads one byte from the receive fifo.static int
UART3. read(byte[] buffer)
Reads the given number of bytes from the UART3.static int
UART3. read(byte[] buffer, int off, int count)
Reads the given number of bytes from the UART3.static int
UART6. read()
Reads one byte from the receive fifo.static int
UART6. read(byte[] buffer)
Reads the given number of bytes from the UART6.static int
UART6. read(byte[] buffer, int off, int count)
Reads the given number of bytes from the UART6.static void
UART3. write(byte b)
Writes a given byte into the transmit buffer.static int
UART3. write(byte[] buffer)
Writes a given number of bytes into the transmit fifo.static int
UART3. write(byte[] buffer, int off, int count)
Writes a given number of bytes into the transmit fifo.static void
UART6. write(byte b)
Writes a given byte into the transmit buffer.static int
UART6. write(byte[] buffer)
Writes a given number of bytes into the transmit fifo.static int
UART6. write(byte[] buffer, int off, int count)
Writes a given number of bytes into the transmit fifo. -
Uses of IOException in org.deepjava.runtime.mpc555.driver
Methods in org.deepjava.runtime.mpc555.driver that throw IOException Modifier and Type Method Description int
SCI. read()
Reads one byte from the SCI.int
SCI. read(byte[] buffer)
Reads the given number of bytes from the SCI.int
SCI. read(byte[] buffer, int off, int count)
Reads the given number of bytes from the SCI.void
SCI. write(byte b)
Writes a given byte into the transmit buffer.int
SCI. write(byte[] buffer)
Writes a given number of bytes into the transmit buffer.int
SCI. write(byte[] buffer, int off, int count)
Writes a given number of bytes into the transmit buffer. -
Uses of IOException in org.deepjava.runtime.util
Methods in org.deepjava.runtime.util that throw IOException Modifier and Type Method Description byte
ByteFifo. dequeue()
Removes onebyte
from the queue.void
DummyOutputStream. write(int oneByte)
-
Uses of IOException in org.deepjava.runtime.zynq7000.driver
Methods in org.deepjava.runtime.zynq7000.driver that throw IOException Modifier and Type Method Description int
UART. read()
Reads one byte from the UART.int
UART. read(byte[] buffer)
Reads the given number of bytes from the UART.int
UART. read(byte[] buffer, int off, int count)
Reads the given number of bytes from the UART.void
UART. write(byte b)
Writes a given byte into the transmit buffer.int
UART. write(byte[] buffer)
Writes a given number of bytes into the transmit buffer.int
UART. write(byte[] buffer, int off, int count)
Writes a given number of bytes into the transmit buffer.
-