数据量太大,不想每个文件存入过多的数据量怎么办?
规定文件中数据条数是个好办法,那当你在TXT文件中写入数据,怎么保证数据不超过规定条数?超过的又怎么存到另一个TXT文件里面?
下面我就给你介绍一种简单的方法(当然不排除有更好的,我这种算是仅供参考)
1 if ((icount % 10000 == 0) && (icount / 10000 > 0)) 2 { 3 sw.Close(); 4 flag = flag + icount / 10000; 5 path = outpath + + flag + ".txt"; 6 try 7 { 8 FileStream fs = new FileStream(path, FileMode.CreateNew); 9 fs.Close(); 10 11 12 } 13 catch (Exception e) 14 { 15 //System.Windows.Forms.MessageBox.Show(e.Message.ToString()); 16 17 } 18 //System.Windows.Forms.MessageBox.Show("111"); 19 sw = new StreamWriter(path, true); 20 flag = 1; 21 }
当然这个数值可以按照实际需求随便改。
时间: 2024-10-24 00:43:40