提问人:Sadia 提问时间:7/30/2018 更新时间:8/1/2018 访问量:395
如何检查HTTP链接中是否存在错误,然后继续?
how can i check if there is some error in the http link, and then proceed?
问:
我在 mvc4 中编写了一个操作方法,该方法从链接下载文件,然后从该文件将数据上传到数据库中。我正在使用 Web 客户端类下载文件。现在在这个阶段,我想知道是否有任何适当的方法来检查 url 中的错误并停止下载文件,使以前的文件在映射的地方保持完整。
public class testController : Controller
{
public class MyWebClient : WebClient
{
protected override WebRequest GetWebRequest(Uri address)
{
var req = base.GetWebRequest(address);
req.Timeout = 15000000;
return req;
}
}
public ActionResult index()
{
System.IO.DirectoryInfo di = new DirectoryInfo(Server.MapPath("~/App_Data/TempBrdcepPSC/PscData"));
foreach (FileInfo csvfile in di.GetFiles())
{
csvfile.Delete();
}
MyWebClient webClient = new MyWebClient();
webClient.DownloadFile("https://www.google.com.pk/", Server.MapPath("~/App_Data/New_folder/Summary.csv"));
return View();
}
}
答:
现在在这个阶段,我想知道是否有任何合适的方法 检查 URL 中的错误
您可以使用以下方法来检查您的 Uri 是否有效
public static bool URLValidatorMethod(string strURL)
{
Uri uri;
return Uri.TryCreate(strURL, UriKind.RelativeOrAbsolute, out uri);
}
问:实际上做了什么?TryCreate
A) 使用指定的 System.String 实例和 System.UriKind 创建新的 System.Uri。并返回一个 System.Boolean 值,如果 System.Uri 已成功创建,则返回 true,否则为 false。
您可以检查是否有 url have 或使用http
https
return Uri.TryCreate(strURL, UriKind.RelativeOrAbsolute, out uri) && uri.Scheme == Uri.UriSchemeHttp || uri.Scheme == Uri.UriSchemeHttps;
或
public static bool URLValidatorMethod(string strURL)
{
return Uri.IsWellFormedUriString(strURL, UriKind.RelativeOrAbsolute); ;
}
问:实际上做了什么?IsWellFormedUriString
A) 通过尝试使用字符串构造 URI 来指示字符串的格式是否正确,并确保字符串不需要进一步转义。
停止下载文件,保持以前的文件完好无损 映射地点
首先通过上述方法检查您的 url 是否有效,如果有效,则将其保存到文件夹中,否则忽略它
这样,您之前下载的文件将不再受到影响,并且它在您映射的地方是安全的,例如
string url = "https://www.google.com.pk/";
if (URLValidatorMethod(url))
{
webClient.DownloadFile(url, Server.MapPath("~/App_Data/New_folder/Summary.csv"));
}
else
{
//Do code here that you want
}
编辑:
try
{
string url = "https://www.google.com.pk/";
if (URLValidatorMethod(url))
{
webClient.DownloadFile(url, Server.MapPath("~/App_Data/New_folder/Summary.csv"));
}
else
{
//Do code here that you want
}
}
catch (Exception)
{
//Do code here if you want to execute if exception occurred
}
finally
{
//Do the code here that you want either exception occurred or not
//Means this code run always if exception comes or not
}
或
如果发生特定类型的异常或错误,则可以修改 catch 块
catch (Exception ex)
{
//You may check any particular exception and write your code
if (ex.GetType() == typeof(ArgumentNullException))
{
//Do code here
}
else
if (ex.GetType() == typeof(WebException))
{
//Do code here
}
else
if (ex.GetType() == typeof(NotSupportedException))
{
//Do code here
}
}
编辑:
参考上面的详细答案,如果它对某人有帮助,这是对我有用的解决方案:
创建一个临时文件夹,在那里下载你的文件,如果在下载过程中没有出现错误,它会将文件从临时文件夹复制到原始位置并完成其余的工作,否则如果出现任何错误,将发送一封电子邮件指示错误,而其余代码将执行而不会导致实际代码流中的错误。
[HttpGet]
public ActionResult index(int OpCode)
{
try
{
System.IO.DirectoryInfo di = new DirectoryInfo(Server.MapPath("~/App_Data/TempPSC/PscData/Temp_folder"));
foreach (FileInfo csvfile in di.GetFiles())
{
csvfile.Delete();
}
MyWebClient webClient1 = new MyWebClient();
webClient1.DownloadFile("http://example.php", Server.MapPath("~/App_Data/TempPSC/PscData/Temp_folder/Summary.csv"));
}
catch (Exception)
{
return RedirectToAction("ImportSendMail");
}
var absolutePath = HttpContext.Server.MapPath("~/App_Data/TempPSC/PscData/Temp_folder/" + "Summary.csv");
if (System.IO.File.Exists(absolutePath))
{
System.IO.DirectoryInfo di2 = new DirectoryInfo(Server.MapPath("~/App_Data/TempPSC/PscData"));
foreach (FileInfo csvfile in di2.GetFiles())
{
csvfile.Delete();
}
String sourceFile = Server.MapPath("~/App_Data/TempPSC/PscData/Temp_folder/Summary.csv");
String destFile = Server.MapPath("~/App_Data/TempPSC/PscData/abc" + ".csv");
System.IO.File.Copy(sourceFile, destFile, true);
}
{
//Rest of the default code that you want to run
}
return View();
}
评论
检查错误:该方法引发三个异常 RefDownloadFile
ArgumentNullException
WebException
(这应该适合您的用例)NotSupportedException
将您的代码放在 try catch 块中。
保持上一个文件不变:我建议,首先将文件下载到临时文件夹中,如果没有异常,则替换您刚刚下载到临时文件夹中的最新文件中的上一个文件。
祝您编码愉快!!
您可以通过这种方式检查HTTP错误,此函数还可以检查URL是否存在。
private bool HttpValidation(string URL)
{
Uri urlToCheck = new Uri(URL);
WebRequest request = WebRequest.Create(urlToCheck);
request.Timeout = 15000;
WebResponse response;
try
{
response = request.GetResponse();
}
catch (Exception)
{
return false; //url does not exist or have some error
}
return true;
}
URL 必须以 或 形式提供。http://
https://
例如。
if(HttpValidation("https://www.google.com.pk"))
{
webClient.DownloadFile("https://www.google.com.pk/",Server.MapPath("~/App_Data/New_folder/Summary.csv"));
}
如果您想检查URL是否有效,则可以尝试
Uri uriResult;
bool result = Uri.TryCreate(uriName, UriKind.Absolute, out uriResult) && uriResult.Scheme == Uri.UriSchemeHttp || uriResult.Scheme == Uri.UriSchemeHttps);
我希望这对你有所帮助。
评论
创建一个临时文件夹,在那里下载你的文件,如果在下载过程中没有出现错误,它会将文件从临时文件夹复制到原始位置并完成其余的工作,否则如果出现任何错误,将发送一封电子邮件指示错误,而其余代码将执行而不会导致实际代码流中的错误。
[HttpGet]
public ActionResult index(int OpCode)
{
try
{
System.IO.DirectoryInfo di = new DirectoryInfo(Server.MapPath("~/App_Data/TempPSC/PscData/Temp_folder"));
foreach (FileInfo csvfile in di.GetFiles())
{
csvfile.Delete();
}
MyWebClient webClient1 = new MyWebClient();
webClient1.DownloadFile("http://example.php", Server.MapPath("~/App_Data/TempPSC/PscData/Temp_folder/Summary.csv"));
}
catch (Exception)
{
return RedirectToAction("ImportSendMail");
}
var absolutePath = HttpContext.Server.MapPath("~/App_Data/TempPSC/PscData/Temp_folder/" + "Summary.csv");
if (System.IO.File.Exists(absolutePath))
{
System.IO.DirectoryInfo di2 = new DirectoryInfo(Server.MapPath("~/App_Data/TempPSC/PscData"));
foreach (FileInfo csvfile in di2.GetFiles())
{
csvfile.Delete();
}
String sourceFile = Server.MapPath("~/App_Data/TempPSC/PscData/Temp_folder/Summary.csv");
String destFile = Server.MapPath("~/App_Data/TempPSC/PscData/abc" + ".csv");
System.IO.File.Copy(sourceFile, destFile, true);
}
{
//Rest of the default code that you want to run
}
return View();
}
评论