Chương trình sau sẽ copy dữ liệu từ file "MyInputFile.txt" sang file "MyOutputFile.txt". Nếu file "MyOutputFile.txt" chưa tồn tại thì chương trình sẽ tạo file và copy dữ liệu sang file đó.
package simplecodecjava.blogspot.com; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; public class CopyExample { public static void main(String[] args) { FileInputStream instream = null; FileOutputStream outstream = null; try { File infile = new File("src/simplecodecjava/blogspot/com/MyInputFile.txt"); File outfile = new File("src/simplecodecjava/blogspot/com/MyOutputFile.txt"); instream = new FileInputStream(infile); outstream = new FileOutputStream(outfile); byte[] buffer = new byte[1024]; int length; /* * copy dữ liệu từ file đầu vào sang file đầu ra * sử dụng phương thức read và write trong java. */ while ((length = instream.read(buffer)) > 0) { outstream.write(buffer, 0, length); } /*Đóng luồng input/output*/ instream.close(); outstream.close(); System.out.println("Copy thành công!"); } catch (IOException ioe) { ioe.printStackTrace(); } } }Output
Copy thành công!Chương trình trên sử dụng phương thức read để đọc dữ liệu.
public int read(byte[] b) throws IOExceptionKhi gọi phương thức trên chương trình sẽ đọc vào mảng buffer 1024 (kích thước của mảng đệm buffer) byte từ luồng dữ liệu đầu vào instream . Phương thức này sẽ trả về số tổng số file được đọc vào mảng buffer. Nếu file không chứa dữ hiệu hoặc chương trình đã đọc đến đoạn kết thúc của file phương thức read sẽ trả về -1.
Chương trình trên sử dụng phương thức write để ghi dữ liệu.
public void write(byte[] b,int off, int length) throws IOExceptionPhương thức trên sẽ viết length byte từ mảng b bắt đầu từ vị trí off ra file đầu ra.
0 Comment to "[Java] Copy dữ liệu sang file khác trong Java"
Post a Comment