首先,我确实尝试为我的问题寻找答案但未能找到答案。
我一直在制作一个程序,其中我的本地文本文件和位于FTP服务器中的在线文本文件会自动相互更新。文本文件包含名称列表。此应用程序旨在同时由不同的计算机使用,并可以在列表中添加和删除名称。
借助其他算法,我可以合并本地和在线文本文件,即使在离线使用时也不会出现问题,只有在有互联网连接时才会更新(使用其他本地文件)。
现在针对这个问题,一切都在90%的时间内完美运行。但是,有时从FTP服务器下载的文本文件会返回空白文本文件,即使它不是。我注意到,当我的应用程序很难检查互联网连接时,最有可能发生这种情况(Pinging google.com)。这将导致完全删除列表,因为我的应用程序将其解释为“使用该应用程序的其他用户删除了列表”。
以下是我用来从FTP服务器下载的方法:
public Boolean DownloadFile(string uri, string path)
{
FtpWebRequest request = (FtpWebRequest)WebRequest.Create(uri);
request.UsePassive = true;
request.KeepAlive = true;
request.UseBinary = true;
request.Proxy = null;
request.Timeout = 5000;
request.Method = WebRequestMethods.Ftp.DownloadFile;
request.Credentials = new NetworkCredential(this.username, this.password);
try
{
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();
StreamReader reader = new StreamReader(responseStream);
StringBuilder sb = new StringBuilder();
sb.AppendLine(reader.ReadToEnd());
File.WriteAllText(path, sb.ToString());
reader.Close();
response.Close();
return true;
}
catch (Exception e )
{
MessageBox.Show("FTPHANDLER DOWNLOAD FILE:"+e.ToString());
return false;
}
}
我用来检查互联网连接的方法:
private static bool CheckForInternetConnection()
{
try
{
Ping myPing = new Ping();
String host = "google.com";
byte[] buffer = new byte[32];
int timeout = 15000;
PingOptions pingOptions = new PingOptions();
PingReply reply = myPing.Send(host, timeout, buffer, pingOptions);
return (reply.Status == IPStatus.Success);
}
catch (Exception e)
{
//MessageBox.Show(e.ToString());
return false;
}
}
这就是我称之为的方式。我已经提供了安全措施,但不会发生,但它仍然会发生。
public void Update()
{
if(CheckForInternetConnection()){
if (DownloadFile(uri,path))
{
char[] charsToTrim = { '\r', '\n' };
string onlineFile = File.ReadAllText(path).TrimEnd(charsToTrim);
if (onlineConfigFile.Equals("") || onlineConfigFile == null)
MessageBox.Show("Downloaded file is empty");
//still do stuff here regardless of the message
//If the other user really do intend to delete the list
}
}
}
更新方法在不同的线程中执行。
至于我在这里发表的第一篇文章,很抱歉结果很长。我确实试图缩短它但不想错过任何细节。
答案 0 :(得分:0)
由于我的问题的性质(随机),我认为“锁定”解决方案为我做了修复,因为在我使用它已经很长一段时间之后问题没有发生。这可能是因为每5秒产生的线程导致了他们同时处理方法的不同部分的问题。
这是固定代码:
public void Update()
{
lock(lockObject)
{
if(CheckForInternetConnection())
{
if (DownloadFile(uri,path))
{
char[] charsToTrim = { '\r', '\n' };
string onlineFile = File.ReadAllText(path).TrimEnd(charsToTrim);
if (onlineConfigFile.Equals("") || onlineConfigFile == null)
MessageBox.Show("Downloaded file is empty");
//still do stuff here regardless of the message
//If the other user really do intend to delete the list
}
}
}
}
我将“lockObject”声明为类级变量,数据类型为“Object”。