zoukankan      html  css  js  c++  java
  • .net 根据文件地址下载文件

    前端代码:
    <a href="/Test/getFilePath">
    后台代码:
    public class Test{
    public string getFilePath(){
    return "http://192.168.0.1//upload//文件1.doc";
    }}

    如果是这种 a标签直接给href指定文件地址,有些文件是直接打开而不是下载,例如:.txt,.pdf格式的;

    所以我把后台返回字符串改成以流的形式返回;例子如下:

    public ActionResult getFilePath(string a_id)
            {
                string path = _DocClient.IGetDocAnnexSevicReturnByReceive(a_id);//获取文件地址
                System.Net.HttpWebRequest httpWebRequest = null;
                string filename = path.Substring(path.LastIndexOf("/") + 1, path.Length - path.LastIndexOf("/") - 1);//获取文件名
                httpWebRequest = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(path);
                System.Net.HttpWebResponse httpWebResponse = (System.Net.HttpWebResponse)httpWebRequest.GetResponse();
                System.IO.Stream sr = httpWebResponse.GetResponseStream();
                return File(sr, "text/html", filename);
               
            }
  • 相关阅读:
    dubbo
    maven
    vue
    SSM框架整合
    MyBatis数据表注解开发
    MyBatis多表操作xml方式
    MyBatis映射配置文件
    Mybatis核心配置文件,传统开发和代理开发(主流)
    SpringMVC高级
    SpringMVC基础
  • 原文地址:https://www.cnblogs.com/JD-XIAOMEI/p/4485484.html
Copyright © 2011-2022 走看看