我正在尝试从FTP服务器读取excel文件并将数据存储在列表中。 Excel文件正在从FTP服务器读取,但数据即将到来
这是我的代码
static void Main(string[] args)
{
//Listing all files from a folder
string filename = getFileList("ftp://ftp.demosite.com/demoFolder/", "username", "password");
//Here we know the file name
FtpWebRequest reqFTP = (FtpWebRequest)FtpWebRequest.Create("ftp://ftp.demosite.com/demoFolder/"+filename);
reqFTP.UsePassive = false;
reqFTP.UseBinary = true;
reqFTP.Credentials = new NetworkCredential("username", "password");
reqFTP.Method = WebRequestMethods.Ftp.DownloadFile;
reqFTP.Proxy = GlobalProxySelection.GetEmptyWebProxy();
FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse();
Stream responseStream = response.GetResponseStream();
// for excelread
StreamReader reader = new StreamReader(responseStream);
string[] allLines = reader.ReadToEnd().Split(Environment.NewLine.ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
// for textfile read
//TextReader tmpReader = new System.IO.StreamReader(responseStream);
//string fileContents = tmpReader.ReadToEnd();
Console.WriteLine("Now writing from file....");
foreach (var item in allLines)
{
Console.WriteLine(item);
}
Console.WriteLine("all file content is printed....");
Console.ReadKey();
}
并且数据以这种格式出现: Current O/P Format
请帮忙! 谢谢。
答案 0 :(得分:1)
斯图尔特指出。您正在将excel文件作为文本文件读取。如果要读取excel文件,则需要将Office.Interop.Excel引用添加到项目中,然后添加到类中。如果您在自己的机器上表现出色,那么您可以毫无问题地执行此操作。如果您没有excel,则必须找到第三方库。我最近发布了一个答案,解释如果你的机器上有excel如何做到这一点。
一旦引用,您就可以正确访问excel文件。