FileUpload控件不能上传txt格式的文件吗?
FileUpload控件不能上传txt格式的文件吗?
我刚才测试上传功能时,上传txt格式的附件,不能上传呀!求各位赐教!
[最优解释]
txt文件肯定可以上传的
[其他解释]
直接识别为没有文件,hasFile=false。这是为什么?
[其他解释]
解决了,文件中没有内容。不过遇到新问题了,下载txt格式的附件时,它下载的是aspx文件,这是怎么回事?
[其他解释]
断点调试,文件名称一直都是对的,到了Respose.Write()出来就是aspx文件了
[其他解释]
Response.BinaryWrite(bytes);出来就是aspx文件
[其他解释]
下载给个链接直接取文件不就行了- -,为啥还要后台代码去Respose.Write()
[其他解释]
Respose.Write() 是写到页面,当然就是aspx之类的。。
[其他解释]
请问怎么修改?下载任意格式的的附件。
Mycode:
FileStream fs = null;
try
{
String fileName = ViewState["Attchment"].ToString();
String filePath = Server.MapPath(@"~/UpLoad/Attchment/" + fileName);
//以字符流的形式下载
fs = new FileStream(filePath, FileMode.Open);
byte[] bytes = new byte[(int)fs.Length];
fs.Read(bytes, 0, bytes.Length);
Response.Clear();
Response.ClearHeaders();
Response.Buffer = false;
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(Path.GetFileName(fileName), System.Text.Encoding.UTF8));
Response.BinaryWrite(bytes);
Response.Flush();
Response.End();
}
catch (Exception ex)
{
throw ex;
}
finally
{
fs.Close();
}
[其他解释]
http://d7.qjwm.com/download.aspx?down=ok&filepath=leoadmin2134%2fuploadDemo.zip
commons-fileupload 的Demo,内含jar.
这个是已经封装好的上传,直接调用就可以了。
[其他解释]
http://d7.qjwm.com/download.aspx?down=ok&filepath=leoadmin2134%2fuploadDemo.zip
这个demo你看下,可以直接放tomcat发布,代码简单易懂,内含jar包。