-
Notifications
You must be signed in to change notification settings - Fork 10
IOUtil
landawn edited this page Apr 29, 2018
·
1 revision
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 AbacusUtil");
String str = IOUtil.readString(file);
N.println(str);
assertEquals("Hello AbacusUtil", 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