Uses of Class
java.io.IOException
-
-
Uses of IOException in java.io
Methods in java.io that throw IOException Modifier and Type Method Description intInputStream. available()Returns an estimated number of bytes that can be read or skipped without blocking for more input.voidCloseable. close()Closes the object and release any system resources it holds.voidInputStream. close()Closes this stream.voidOutputStream. close()Closes this stream.voidFlushable. flush()Flushes the object by writing out any buffered data to the underlying output.voidOutputStream. flush()Flushes this stream.abstract intInputStream. read()Reads a single byte from this stream and returns it as an integer in the range from 0 to 255.intInputStream. read(byte[] buffer)Equivalent toread(buffer, 0, buffer.length).intInputStream. read(byte[] buffer, int byteOffset, int byteCount)Reads up tobyteCountbytes from this stream and stores them in the byte arraybufferstarting atbyteOffset.voidInputStream. reset()Resets this stream to the last marked location.voidOutputStream. write(byte[] buffer)Equivalent towrite(buffer, 0, buffer.length).voidOutputStream. write(byte[] buffer, int offset, int count)Writescountbytes from the byte arraybufferstarting at positionoffsetto this stream.abstract voidOutputStream. 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 intFlinkUART. read()Reads one byte from the UART.intFlinkUART. read(byte[] buffer)Reads the given number of bytes from the UART.intFlinkUART. read(byte[] buffer, int off, int count)Reads the given number of bytes from the UART.voidFlinkUART. write(byte b)Writes a given byte into the transmit buffer.intFlinkUART. write(byte[] buffer)Writes a given number of bytes into the transmit buffer.intFlinkUART. 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 intUART3. read()Reads one byte from the receive fifo.static intUART3. read(byte[] buffer)Reads the given number of bytes from the UART3.static intUART3. read(byte[] buffer, int off, int count)Reads the given number of bytes from the UART3.static intUART6. read()Reads one byte from the receive fifo.static intUART6. read(byte[] buffer)Reads the given number of bytes from the UART6.static intUART6. read(byte[] buffer, int off, int count)Reads the given number of bytes from the UART6.static voidUART3. write(byte b)Writes a given byte into the transmit buffer.static intUART3. write(byte[] buffer)Writes a given number of bytes into the transmit fifo.static intUART3. write(byte[] buffer, int off, int count)Writes a given number of bytes into the transmit fifo.static voidUART6. write(byte b)Writes a given byte into the transmit buffer.static intUART6. write(byte[] buffer)Writes a given number of bytes into the transmit fifo.static intUART6. 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 intSCI. read()Reads one byte from the SCI.intSCI. read(byte[] buffer)Reads the given number of bytes from the SCI.intSCI. read(byte[] buffer, int off, int count)Reads the given number of bytes from the SCI.voidSCI. write(byte b)Writes a given byte into the transmit buffer.intSCI. write(byte[] buffer)Writes a given number of bytes into the transmit buffer.intSCI. 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 byteByteFifo. dequeue()Removes onebytefrom the queue.voidDummyOutputStream. 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 intUART. read()Reads one byte from the UART.intUART. read(byte[] buffer)Reads the given number of bytes from the UART.intUART. read(byte[] buffer, int off, int count)Reads the given number of bytes from the UART.voidUART. write(byte b)Writes a given byte into the transmit buffer.intUART. write(byte[] buffer)Writes a given number of bytes into the transmit buffer.intUART. write(byte[] buffer, int off, int count)Writes a given number of bytes into the transmit buffer.
-