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();
追问
服务端应该没问题的,因为我用浏览器下载正常。
AiPPT
2024-09-19 广告
2024-09-19 广告
作为北京饼干科技有限公司的工作人员,关于AIPPT免费生成PPT的功能,我可以简要介绍如下:AIPPT是一款基于人工智能技术的PPT制作工具,它为用户提供了免费生成PPT的便捷服务。用户只需简单输入PPT的主题或内容大纲,AIPPT便能智能...
点击进入详情页
本回答由AiPPT提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询