2

我尝试使用 aspx 读取文本文件,然后将它读取的任何行存储在一个字符串中,我在网上查看过,似乎找不到简单的教程,有人可以帮我谢谢。

4

2 回答 2

1

一旦文件位于服务器上的已知位置,您只需执行以下操作:

string filePath = Server.MapPath(Url.Content("~/Content/upload/MyTextFile.txt"));
string allText = System.IO.File.ReadAllText(filepath);
于 2012-04-30T11:21:08.987 回答
1
            StreamReader objReader = new StreamReader("c:\\test.txt");
            string sLine="";
            List<string> lstText = new List<string>();

            while (sLine != null)
            {
                // Line by line read and add it to your List
                sLine = objReader.ReadLine();
                if (sLine != null)
                    lstText.Add(sLine);
            }
                        objReader.Close();

            foreach (string sOutput in arrText)
                Console.WriteLine(sOutput);
            Console.ReadLine();

请按照以下链接

http://support.microsoft.com/kb/306777

http://msdn.microsoft.com/en-us/library/ezwyzy7b.aspx

于 2012-04-30T11:21:40.637 回答