java i/o
ForKing_
这个作者很懒,什么都没留下…
展开
-
java 简单的字节流与字符串的转换换 及加密与解密(对称)
public class TestByte { public static void main(String[] args) { //字节流的作用:字节流是最基本的流,文件的操作、网络数据的传输等等都依赖于字节流。 //字符流常常用于读取文本类型的数据或字符串流的操作等等。 //convert the byteStream to string byte原创 2013-09-09 19:29:35 · 1077 阅读 · 0 评论 -
java 字节流
Byte StreamsPrograms use byte streams to perform input and output of 8-bit bytes. All byte stream classes are descended fromInputStream and OutputStream.There are many byte stream classes. To原创 2013-09-05 19:13:55 · 428 阅读 · 0 评论 -
java 字符流
Character StreamsThe Java platform stores character values using Unicode conventions. Character stream I/O automatically translates this internal format to and from the local character set. In W原创 2013-09-05 22:31:49 · 682 阅读 · 0 评论