導航:首頁 > 版本升級 > net生成txt文件

net生成txt文件

發布時間:2024-12-04 06:43:51

Ⅰ 在asp.net中如何用文件流生成一個.txt文件,並保存在伺服器端

在按鈕事件里寫:
if(TextBox1.Text!=""&&TextBox1.Text!="")
{
string path = Server.MapPath("Files") + "\\" + TextBox1.Text.Trim();
//TextBox1.Text.Trim()這個控制項用來獲取文件名字和類型,比如1.text;Files文件是項目裡面的一個文件,新建的text文件放在此目錄下,可以自己根據自己的寫
FileInfo fi=new FileInfo(path);
if(!fi.Exists)
{
StreamWriter sw = fi.CreateText();
sw.WriteLine(TextBox2.Text.Trim());
//這是寫入文件的內容,不寫空就是了
sw.Flush();
sw.Close();
}
Label1.Text = "成功";
//指示是否成功
}
else
{
Label1.Text = "請輸入文件名和文件類型";
}

Ⅱ 在.net中如何生成一個txt文本文檔

public static void WriteToFile(string name, string content, bool isCover)
{
FileStream fs = null;
try
{
if (!isCover && File.Exists(name))
{
fs = new FileStream(name, FileMode.Append, FileAccess.Write);
StreamWriter sw = new StreamWriter(fs, Encoding.UTF8);
sw.WriteLine(content);
sw.Flush();
sw.Close();
}
else
{
File.WriteAllText(name, content, Encoding.UTF8);
}
}
finally
{
if (fs != null)
{
fs.Close();
}
}

}

閱讀全文

與net生成txt文件相關的資料

熱點內容
數據灣網站被攻擊怎麼處理 瀏覽:804
微信授權管理的數據怎麼查 瀏覽:897
模板上傳哪個文件夾 瀏覽:649
word插入文本框 瀏覽:844
app應用用什麼語言 瀏覽:996
hex是什麼樣的數據 瀏覽:95
什麼能搞錢的app 瀏覽:395
濰坊哪裡有編程培訓 瀏覽:57
hosts是什麼配置文件 瀏覽:428
win10數字 瀏覽:680
網上電費繳費app 瀏覽:928
捷信app上怎麼查分期付款 瀏覽:57
dnf新版本鬼泣打索德 瀏覽:68
微信的作用和意義 瀏覽:861
哪個網站可以關注疫情 瀏覽:314
wps轉發微信是什麼格式文件 瀏覽:345
兩軸車床45度倒角編程怎麼編 瀏覽:783
android開啟網路數據 瀏覽:723
傻瓜進銷存軟體教程 瀏覽:371
廈門網站開發一般多少錢 瀏覽:423

友情鏈接