(C# .NET) data ประมาณ 1 ล้านกว่า row จะ write ลง text file ได้อย่างไรบ้างครับ?
เห็นแค้าแนะนำให้ใช้ using ครอบเพื่อกำหนด Scope ครับ
Code
public static void ToCSV(string fileWRITE, string fileREAD)
{
usint(var commas = new StreamWriter(fileWRITE))
using(var file = new StreamReader("yourFile.txt"))
{
var line = file.ReadLine();
while( line != null )
{
string q = (y.Substring(0,15)+","+y.Substring(15,1)+","+y.Substring(16,6)+","+y.Substring(22,6)+ ",NULL,NULL,NULL,NULL");
commas.WriteLine(q);
line = file.ReadLine();
}
}
}
Date :
2015-07-28 09:42:16
By :
mr.win
ติดปัญหาตอนอ่านข้อมูลจาก table
หรือปัญหาตอนเขียนไฟล์
Date :
2015-07-28 11:25:36
By :
watcharop
ติดปัญหาตอนเขียนลงไฟล์ครับ ตอนยัด data ใส่ StreamWriter มันOut of Memory Exception ตลอดเลย
Date :
2015-07-29 10:16:31
By :
nateemoma
Load balance : Server 05