c# http下载文件
C#使用http下载文件,下载txt文件时首尾会增加字符,下载pdf文件时包含的图片变形,文字正常,请问是神马原因。我在浏览器直接打开url下载的文件正常...
C#使用http下载文件,下载txt文件时首尾会增加字符,下载pdf文件时包含的图片变形,文字正常,请问是神马原因。我在浏览器直接打开url下载的文件正常
展开
1个回答
展开全部
DataSet ds = new DataSet();
string s = Request.PhysicalApplicationPath;
ds = si.getStudentInfo(StudentID);
string filePath = s + ds.Tables[0].Rows[0]["SPicture"].ToString();
if (File.Exists(filePath))
{
FileInfo file = new FileInfo(filePath);
Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8"); //解决中文乱码
Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(file.Name)); //解决中文文件名乱码
Response.AddHeader("Content-length", file.Length.ToString());
Response.ContentType = "appliction/octet-stream";
Response.WriteFile(file.FullName);
Response.End();
string s = Request.PhysicalApplicationPath;
ds = si.getStudentInfo(StudentID);
string filePath = s + ds.Tables[0].Rows[0]["SPicture"].ToString();
if (File.Exists(filePath))
{
FileInfo file = new FileInfo(filePath);
Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8"); //解决中文乱码
Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(file.Name)); //解决中文文件名乱码
Response.AddHeader("Content-length", file.Length.ToString());
Response.ContentType = "appliction/octet-stream";
Response.WriteFile(file.FullName);
Response.End();
追问
服务端应该没问题的,因为我用浏览器下载正常。
浙江启扬智能科技有限公司
2023-06-12 广告
2023-06-12 广告
Android和ARM、Linux之间存在密切的联系。Android是一种基于Linux内核的嵌入式智能操作系统,它采用了ARM处理器作为其主要处理器架构。Android的内核和许多应用程序都是基于ARM架构编写的,包括处理器和内存管理器。...
点击进入详情页
本回答由浙江启扬智能科技有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询