我想從txt文件中讀取行到數組中並將其顯示到文本框中。 這裏是我的代碼:從text.file顯示列到數組c#
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack != true)
{
blogPostTextBox.Text ="";
string blogFilePath = Server.MapPath("~") + "/Blogs.txt";
string[] blogMessageArray = File.ReadAllLines(blogFilePath);
// this for loop code does not work..I think..
for (int i = 0; i < blogMessageArray.Length; i++)
{
string[] fileLineArray = blogMessageArray[i].Split(' ');
blogPostTextBox.Text = blogMessageArray[i] + System.Environment.New Line.ToString();
}
}
}
我的文本文件包含幾行,我試圖分裂每一行陣列,通過一個for循環或while循環顯示所有行到一個文本框。
那麼問題是什麼? – Rohit
什麼是錯誤/輸出? –