(InputStream i, byte b[])
| 1679 | /// input stream does not support reading after close, or |
| 1680 | /// another I/O error occurs. |
| 1681 | public static void readFully(InputStream i, byte b[]) throws IOException { |
| 1682 | readFully(i, b, 0, b.length); |
| 1683 | } |
| 1684 | |
| 1685 | /// The read fully method from data input stream is very useful for all types of |
| 1686 | /// streams... |