摘要:
用以下两种方式写文件时,都是默认使用的UTF-8格式的编码 string csFileName = ""; //文件名,完整路径string html = ""; //文件内容//方法一using (StreamWriter sww = File.CreateText(csFileName)) { sww.Write(html); sww.Flush();}//方法二FileInf... 阅读全文
posted @ 2006-03-29 10:12 小 强 阅读(1095) 评论(0) 推荐(0) 编辑