• Kỹ thuật xử lý file văn bản • Kỹ thuật xử lý mảng. • Kỹ thuật xử lý xâu ký tự.[r]
(1)CƠ SỞ LẬP TRÌNH NÂNG CAO
Biên soạn: Ths.Tôn Quang Toại TonQuangToai@yahoo.com
TPHCM, NĂM 2013
(2)ÔN TẬP KỸ THUẬT XỬ LÝ FILE – MẢNG – XÂU KÝ TỰ
(3)Nội dung
• Kỹ thuật xử lý file văn • Kỹ thuật xử lý mảng
(4)Kỹ thuật xử lý file văn
• Thư viện
using System.IO;
using System.Diagnostics;
§Lớp
(5)Kỹ thuật xử lý file văn
• Ghi liệu Text file
– Tạo đối tượng stream-writer mở file
StreamWriter sw = new StreamWriter("file");
• Ghi liệu file
sw.Write(value);
Sw.WriteLine(value);
• Đóng file
(6)Kỹ thuật xử lý file văn
• Đọc liệu Text từ file
– Tạo đối tượng stream-reader mở file
StreamReader sr = new StreamReader("file");
• Đọc liệu file
string s = sr.ReadLine(); string s = sr.ReadToEnd();
• Đóng file
(7)Kỹ thuật xử lý file văn