Đang chuẩn bị liên kết để tải về tài liệu:
Lập trình Java cơ bản : Luồng và xử lý file part 3

Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG

Các luồng file • Được sử dụng để xuất nhập với file. • Luồng nhập từ file: FileInputStream • FileInputStream(String name) • FileInputStream(File f) • Luồng xuất ra file: FileOutputStream • FileOutputStream(String name) • FileOutputStream(File f) • FileOutputStream(String name, boolean append) | Các luồng file Được sử dụng để xuất nhập với file. Luồng nhập từ file Fileinputstream FileinputStream String name FileinputStream File f Luồng xuất ra file FileOutputStream FileOutputStream String name FileOutputStream File f FileOutputStream String name boolean append Phương thức nhập xuất của các luồng file giống như của các luồng nhập xuất cơ bản 11 Ví dụ Đọc và hiển thị file v1 import java.io. public class ReadFile public static void main String args try FileInputStream f new FileInputStream readme.txt int ch while ch f.read -1 System.out.print char ch f.close catch FileNotFoundException d System.out.println File not found catch IOException d System.out.println Can not read file Ví dụ Ghi dữ liệu ra file import java.io. public class WriteFile public static void main String args byte buffer new byte 80 try System.out.println Enter a string to write to file int num System.in.read buffer FileOutputStream f new FileOutputStream line.txt f.write buffer 0 num f.close catch IOException e System.out.println Error IO file .

Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.