-
Notifications
You must be signed in to change notification settings - Fork 2
IOUtil
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()))));
- How to Learn/Use the APIs correctly and efficiently
- Programming in RDBMS with Jdbc/PreparedQuery/SQLExecutor/Mapper/Dao
- JSON/XML Parser
- SQLite Executor
- SQL Executor
- SQL Builder
- SQL Mapper
- DataSet
- JdbcUtil/CSVUtil
- IOUtil
- PrimitiveList
- Profiler
- Http Client
- Web Services
- Programming in Android
- Parse/Analyze/Operate (Big) Data (on N servers in parallel)
- Code Generation
- Introduction to JDBC
- Naming Convention
- Partitioning/Distribution
- SQL/NoSQL
- Model/Entity