Menu

Monday, October 21, 2013

[C#] วิธีการเขียนไฟล์ข้อความ
[C#] How to Write Text File

ขั้นแรก เพิ่มประโยค using ตามด้านล่าง
First, add using statement
  1. using System.IO.StreamWriter;

ขั้นที่สอง ประกาศและนิยามออบเจ็ค StreamWriter ใหม่ เพื่อเขียนไฟล์ข้อความไปที่ file_path
Second, declare and define new StreamWriter object to write text file at file_path
  1. StreamWriter file = new StreamWriter(file_path);

ขั้นที่สาม เขียนข้อความลงไฟล์ข้อความโดยใช้ Write หรือ WriteLine 
Third, write some text to file using Write or WriteLine
  1. file.Write("Hello ");
  2. file.WriteLine("World!!!");

ขั้นสุดท้าย ปิดตัวเขียนไฟล์ด้วยฟังก์ชั่น Close
Last, close the file writer with Close function
  1. file.Close();

สิ่งสำคัญ: ถ้า file ไม่ถูกปิด ข้อความบรรทัดท้ายๆจะไม่ถูกเขียนลงไฟล์ และบรรทัดสุดท้ายที่ถูกเขียนจะไม่สมบูรณ์
Important: If file is not close then the last couple of lines are not written, and the last written line is incomplete

No comments:

Post a Comment