Skip to content
landawn edited this page Jul 27, 2019 · 2 revisions

IOUtil provides the most daily used methods to read/write byte/char/String/... from/to File/InputStream/Reader/OutputStream/Writer..., and APIs to parse File/InputStream/Reader.

File file = new File("./myTestFile.txt");
IOUtil.write(file, "Hello abacus-util");

String str = IOUtil.readString(file);
N.println(str);

assertEquals("Hello abacus-util", str);

assertEquals("abc", String.valueOf(IOUtil.bytes2Chars(IOUtil.chars2Bytes("abc".toCharArray()))));