We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0415ba1 commit 24f9535Copy full SHA for 24f9535
1 file changed
src/main/java/cn/byhieg/iotutorial/README.md
@@ -0,0 +1,30 @@
1
+# JavaIO讲解
2
+
3
+## 字节流
4
+在该目录下,`bytestreamio` 是 字节流的io类的例子。
5
+分别有对应输入流的:
6
7
+- FileInputStream
8
+- BufferedInputStream
9
+- ByteArrayInputStream
10
11
+对应输出流的:
12
13
+- FileOutputStream
14
+- BufferedOutputStream
15
+- ByteArrayOutputStream
16
17
18
+## 字符流
19
+在该目录下,`charsetstreamio`是 字符流的io类的例子。
20
21
+分别对应输入流的:
22
23
+- InputStreamReader
24
+- FileReader
25
+- BufferedWriter
26
27
+还有一些涉及到socket,序列化,压缩,管道的类的例子,放到其他的文件夹中。
28
29
+关于IO的一些资料,网上也有很多,就不在总结了,放出一些链接出来:
30
+[深入分析IO](https://www.ibm.com/developerworks/cn/java/j-lo-javaio/#ibm-pcon)
0 commit comments