C#使用Streamwriter打开文件的方法
程序员文章站
2022-07-22 19:28:19
本文实例讲述了c#使用streamwriter打开文件的方法。分享给大家供大家参考。具体如下:
using system;
using system.io;...
本文实例讲述了c#使用streamwriter打开文件的方法。分享给大家供大家参考。具体如下:
using system; using system.io; public class ktod1 { public static void main() { string str; streamwriter fstr_out; // open the file directly using streamwriter. try { fstr_out = new streamwriter("test.txt"); } catch(ioexception exc) { console.writeline(exc.message + "cannot open file."); return ; } console.writeline("enter text ('stop' to quit)."); do { console.write(": "); str = console.readline(); if(str != "stop") { str = str + "\r\n"; // add newline try { fstr_out.write(str); } catch(ioexception exc) { console.writeline(exc.message + "file error"); return ; } } } while(str != "stop"); fstr_out.close(); } }
希望本文所述对大家的c#程序设计有所帮助。
下一篇: 冻秋葵做法是怎么样的,煮熟加冷冻就可以了