2010年9月27日

c#将字符串内容保存到纯utf8(无BOM)文件

摘要: System.Text.UTF8Encoding utf8 = new System.Text.UTF8Encoding(false);File.WriteAllText(FilePath, strContent, utf8); 阅读全文

posted @ 2010-09-27 21:50 freeliver54 阅读(5557) 评论(0) 推荐(0)

Mysql利用Mysqldump备份 及还原数据库

摘要: 命令行备份C:\...\mysql\bin>mysqldump -uYongHuMing -pMiMa mydbname > c:\\a.txt还原C:\...\mysql\bin>mysql -uYongHuMing -pMiMa mydbname < c:\\a.txt 阅读全文

posted @ 2010-09-27 10:05 freeliver54 阅读(866) 评论(3) 推荐(0)

导航