Apache Commons IO - IOUtils
IOUtils มีวิธียูทิลิตี้สำหรับการอ่านเขียนและคัดลอกไฟล์ วิธีการทำงานกับ InputStream, OutputStream, Reader และ Writer
การประกาศคลาส
ต่อไปนี้เป็นคำประกาศสำหรับ org.apache.commons.io.IOUtils คลาส -
public class IOUtils
extends Object
คุณสมบัติของ IOUtils
คุณสมบัติของ IOUtils มีดังต่อไปนี้ -
จัดเตรียมวิธียูทิลิตี้แบบคงที่สำหรับการดำเนินการอินพุต / เอาต์พุต
toXXX () - อ่านข้อมูลจากสตรีม
write () - เขียนข้อมูลไปยังสตรีม
copy () - คัดลอกข้อมูลทั้งหมดไปยังสตรีมไปยังสตรีมอื่น
contentEquals - เปรียบเทียบเนื้อหาของสองสตรีม
ตัวอย่าง IOUtils Class
นี่คือไฟล์อินพุตที่เราต้องแยกวิเคราะห์ -
Welcome to TutorialsPoint. Simply Easy Learning.
IOTester.java
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import org.apache.commons.io.IOUtils;
public class IOTester {
public static void main(String[] args) {
try {
//Using BufferedReader
readUsingTraditionalWay();
//Using IOUtils
readUsingIOUtils();
} catch(IOException e) {
System.out.println(e.getMessage());
}
}
//reading a file using buffered reader line by line
public static void readUsingTraditionalWay() throws IOException {
try(BufferedReader bufferReader = new BufferedReader( new InputStreamReader(
new FileInputStream("input.txt") ) )) {
String line;
while( ( line = bufferReader.readLine() ) != null ) {
System.out.println( line );
}
}
}
//reading a file using IOUtils in one go
public static void readUsingIOUtils() throws IOException {
try(InputStream in = new FileInputStream("input.txt")) {
System.out.println( IOUtils.toString( in , "UTF-8") );
}
}
}
เอาต์พุต
มันจะพิมพ์ผลลัพธ์ต่อไปนี้ -
Welcome to TutorialsPoint. Simply Easy Learning.
Welcome to TutorialsPoint. Simply Easy Learning.