码迷,mamicode.com
首页 > 其他好文 > 详细

【转】IOUtils使用介绍

时间:2020-02-22 22:11:24      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:可见   exce   read   windows系统   代码   简介   多版本   异常   log   

在下面的例子,我们将详细说明如何使用 org.apache.commons.io 包中的 IOUtils类如何使用,通过包名我们可以知道它是 Apache Commons IO 的一部分 。该类的所有成员函数都被用来处理输入 - 输出流,它的确非常利于来编写处理此类事务的程序。IOUtils与其他Apache Commons中的类一样,都是处理IO操作的非常重要包装器,与手动编写这些功能的其他程序相比,它们实现这些方法的代码变得更小,更清晰,更易理解。

1. IOUtils类,字段和方法简介
IOUtils类的所有成员字段和方法都是静态的,因此在标准编程中不需要创建IOUtils类的对象,而是通过类名和适当的方法名来使用它。如:IOUtils.method1 ()。

2. IOUtils 字段
static char DIR_SEPARATOR:目录分隔符
static char DIR_SEPARATOR_UNIX:Unix系统的目录分隔符
static char DIR_SEPARATOR_WINDOWS:Windows系统的目录分隔符
static String LINE_SEPARATOR:行分隔符
static String LINE_SEPARATOR_UNIX:Unix系统的行分隔符
static String LINE_SEPARATOR_WINDOWS:Windows系统的行分隔符
3. IOUtils 方法摘要
现在我们将要讨论的是IOUtils中的一些非常重要的方法。类中的所有处理InputStream的方法都带有内部的缓冲区,所以我们不需要再使用 BufferedReader或者 BufferedInputStream,默认的缓冲区大小为4K,不过我们也可以自定义它的大小。

static void closeQuietly(Closeable closeable):它将无条件的关闭一个可被关闭的对象而不抛出任何异常。它也有很多版本去支持关闭所有的InputStream、OutputStream、Reader和Writer。
static boolean contentEquals(Reader inp1,Reader inp2):这个方法将比较两个Reader对象的内容是否相同,相同返回true,否则返回false。它还有另外的一个版本去比较InputStream对象。还有一个方法 contentEqualsIgnoreEOL(Reader r1,Rrader r2),它将忽略行结束符而比较内容。
static int copy(InputStream inp,OutputStream outp):这个方法将内容按字节从一个InputStream对象复制到一个OutputStream对象,并返回复制的字节数。同样有一个方法支持从Reader对象复制到Writer对象。
static LineIterator lineIterator(InputStream input,String enc):这个方法将从InputStream中返回一个行迭代器,我们可以指定一个字符格式(或者为空而使用默认的)。行迭代器将持有一个打开的InputStream的引用。当你迭代结束后,应当关闭stream来释放内部资源。这个字符编码也可以是一个字符集对象。同样也有一个方法支持Reader对象。
static List<String> readLines(InputStream inp,String enc)
static List<String> readLines(Reader inp)
static BufferedReader toBufferedReader(Reader rdr, int size)
static InputStream toInputStream(CharSequence inp, String enc)
static String toString(Reader inp)
static void write(String data,Writer outp)
static void writeLines(Collection<?> lines,String lineEnding,Writer outp)
4. 方法使用
IOUtils.toInputStream()方法

InputStream is=IOUtils.toInputStream("This is a String","utf-8");

 


IOUtils.toInputStream()方法为*“This is a String”*创建一个InputStream,并返回该对象。

IOUtils.closeQuietly()方法

public void test2() throws IOException {
InputStream is=IOUtils.toInputStream("This is a String","utf-8");
OutputStream os=new FileOutputStream("test2.txt");
int bytes=IOUtils.copy(is,os);
System.out.println("File Written with "+bytes+" bytes");
IOUtils.closeQuietly(os);
}

 



我们可以方便的关闭输出流而不用抛出异常,我们打开它的源码看看:

@Deprecated
public static void closeQuietly(final Closeable closeable) {
try {
if (closeable != null) {
closeable.close();
}
} catch (final IOException ioe) {
// ignore
}
}

 



可见,它跟我们传统的关闭输出流是一样的,没什么区别,不过我们可以看见它已经被废弃了,现在推荐的是利用Java7引入的 try-with-resources方式来关闭。

@Test
public void test2() throws IOException {
try (InputStream is = IOUtils.toInputStream("This is a String", "utf-8");
OutputStream os = new FileOutputStream("test2.txt")) {
int bytes = IOUtils.copy(is, os);
System.out.println("File Written with " + bytes + " bytes");
}
}

 



更多关于 try-with-resources可以看 try-with-resources 和 multi-catch

IOUtils.copy()方法

public void test2() throws IOException {
try (InputStream is = IOUtils.toInputStream("This is a String", "utf-8");
OutputStream os = new FileOutputStream("test2.txt")) {
int bytes = IOUtils.copy(is, os);
System.out.println("File Written with " + bytes + " bytes");
}
}

 



IOUtils.copy()方法有很多版本,我这里举例的是最常用的方法,同时还有一个IOUtils.copyLarge()方法支持复制(不超过2GB)的InputStream或者Reader对象。

IOUtils.toString()方法

FileReader fileReader = new FileReader("test2.txt"));
System.out.println(IOUtils.toString(fileReader));

 



和上面所看到的toString方法类似,IOUtils有支持 InputStream、URI和 URL的方法,它们都需要指定字符集。

IOUtils.read()方法

@Test
public void test4(){
try(FileInputStream fin=new FileInputStream("test2.txt")){
byte[] buf= new byte[100];
int len=IOUtils.read(fin,buf);
System.out.println("The Length of Input Stream:"+len);
}catch (IOException e){
e.printStackTrace();
}
}

 



该方法从InputStream中读取bytes并返回一个byte[]。之后我们可以对该byte[]数组进行操作。有些时候该方法非常有用,但是我们建议使用readlines()方法。

IOUtils.writeLines()方法

@Test
public void test5() {
try (FileInputStream fin = new FileInputStream("test2.txt")) {
List ls = IOUtils.readLines(fin, "utf-8");
for (int i = 0; i < ls.size(); i++) {
System.out.println(ls.get(i));
}
} catch (IOException e) {
e.printStackTrace();
}
}

 



我们可以将InputStream的内容作为字符串列表,然后对其进行操作。

IOUtils.writeLines()方法

@Test
public void test6(){
List<String> ls=new ArrayList<>();
ls.add("asdasd");
ls.add("ada21");
ls.add("addsf");
try(OutputStream os=new FileOutputStream("test3.txt")) {
IOUtils.writeLines(ls,IOUtils.LINE_SEPARATOR_WINDOWS,os);
} catch (IOException e) {
e.printStackTrace();
}
}

 


LineIterator 类和 lineIterator() 方法

@Test
public void test7(){
try(FileInputStream fin=new FileInputStream("test2.txt")){
LineIterator lt=IOUtils.lineIterator(fin,"utf-8");
while (lt.hasNext()){
String line=lt.nextLine();
System.out.println(line);
}
}catch (IOException e){
e.printStackTrace();
}
}

 


通过lineIterator方法返回一个LineIterator对象,然后进行迭代。

IOUtils.write()方法

@Test
public void test8(){
try(OutputStream os=new FileOutputStream("test4.txt")){
IOUtils.write("sahjsdhjad",os,"utf-8");
}catch (IOException e){
e.printStackTrace();
}
}

 

我们可以通过IOUtils.write()方法将String写到一个Writer对象或者OutputStream对象中去。

 

其他代码参考:

1.从流中读取数据
FileInputStream fileInputStream = new FileInputStream(new File("d://demo.txt"));
List<String> list = IOUtils.readLines(fileInputStream, "UTF-8");//只要是InputStream流都可以,比如http响应的流
//直接把流读取为String
String content = IOUtils.toString(inputStream,"UTF-8");
//把流转换为byte数组
byte[] bytes = IOUtils.toByteArray(inputStream);

 

2.把数据写入流
//把数据写入输出流
IOUtils.write("abc", outputStream);
//把字符串转换流
InputStream inputStream = IOUtils.toInputStream("aaaaaaaaa", "UTF-8");

 

2.流的相互复制
IOUtils.copy(inputstream,outputstream);
IOUtils.copy(inputstream,writer);
IOUtils.copy(inputstream,writer,encoding);
IOUtils.copy(reader,outputstream);
IOUtils.copy(reader,writer);
IOUtils.copy(reader,writer,encoding);

 

2.流的关闭
try {
     return IOUtils.copy(inputStream, outputStream);
 } finally {
     //优雅的关闭流
     IOUtils.closeQuietly(inputStream);
     IOUtils.closeQuietly(outputStream);
 }

 

 
参考链接:

链接:https://www.jianshu.com/p/6b4f9e5e2f8e

链接:https://blog.csdn.net/l2580258/article/details/89227761

 

【转】IOUtils使用介绍

标签:可见   exce   read   windows系统   代码   简介   多版本   异常   log   

原文地址:https://www.cnblogs.com/appium/p/12347100.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!