/**
* Unit test for simple App.
*/
public class AppTest {
/**
* 从文件中读取内容
*/
@Test
public void inputstreamTest() {
try {
InputStream inputStream = new FileInputStream(new File("d:/hello.txt"));
byte[] bytearr = new byte[200];
int length = 0;
while ((length = inputStream.read(bytearr, 0, 200)) != -1) {
String str = new String(bytearr, 0, length,"gbk");
System.out.println("str:"+str);
}
inputStream.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/**
* 向文件中写入数据
* @throws IOException
*/
@Test
public void outpustreamTest() throws IOException {
String str = "你好,我是信息。";
byte[] bytearr = str.getBytes("gbk");
OutputStream outputStream = new FileOutputStream(new File("d:/aa.txt"));
outputStream.write(bytearr);
outputStream.close();
}
/**
* 使用数组字节输入流方式读取
* @throws IOException
*/
@Test
public void byteArrayInputStreamTest() throws IOException {
String str = "你好";
byte[] buff = str.getBytes("gbk");
System.out.println("#buff:"+buff.length);
InputStream inputstream = new ByteArrayInputStream(buff);
int length = 0;
while(-1!=(length=inputstream.read())) {
System.out.println("length:"+length);
}
}
/**
* 使用数组字节输出流向文件中写入
* @throws IOException
*/
@Test
public void byteArrayOutputStreamTest() throws IOException{
String str = "hello";
byte[] buff = str.getBytes("gbk");
ByteArrayOutputStream outputstream = new ByteArrayOutputStream();
outputstream.write(buff);
byte[] bytearr = outputstream.toByteArray();
for(byte b : bytearr) {
System.out.println((char)b);
}
OutputStream os = new FileOutputStream("d:/aa1.txt");
outputstream.writeTo(os);
os.close();
outputstream.close();
}
@Test
public void fileReaderTest() throws Exception {
FileReader fReader = new FileReader("d:/aa.txt");
char[] cbuf = new char[200];
int length = 200;
length = fReader.read(cbuf, 0, length);
for(int i = 0 ;i < cbuf.length;i++) {
System.out.println(cbuf[i]);
}
fReader.close();
}
@Test
public void fileWriterTest() throws Exception {
FileWriter fWriter = new FileWriter("d:/bb.txt");
String hhh = "你好我找二狗子";
char[] cbuf = hhh.toCharArray();
for(int i = 0 ;i < cbuf.length;i ++) {
System.out.println(cbuf[i]);
}
fWriter.write(cbuf);
fWriter.close();
}
}
IO-demo
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 之前用的第三方的消息推送 jpush 的消息推送,和环信的Im。 目前个人觉得自己实现有两个简单的方案可以使用: ...
- 简介 原本是想在vue的项目中加入实时对话通信的一个对话框的,然后就用socket.io写了这么个小demo,参考...
- 同步与异步,阻塞与非阻塞,以及这四个名词之间的两两集合,是学习并发编程/网络编程时会遇到的几个重要概念 注:以下I...
- 前言# 前两章我们个一直提到一个词就是默认文件描述符,他到底是个什么东西(它不是个东西O(∩_∩)O),我们来一起...