string fileName = "name.apk";//客户端保存的文件名
        string filePath = Server.MapPath("apk/KMYY.apk");//路径 //以字符流的形式下载文件
        FileStream fs = new FileStream(filePath, FileMode.Open);
        byte[] bytes = new byte[(int)fs.Length]; fs.Read(bytes, 0, bytes.Length);
        fs.Close();

             Response.ContentType = "application/octet-stream"; //通知浏览器下载文件而不是打开
       //Response.ContentType = "application/vnd.android.package-archive";
        Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
        Response.BinaryWrite(bytes);
        Response.Flush();
        Response.End();

相关文章:

  • 2021-10-27
  • 2021-10-24
  • 2021-10-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-18
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-03
  • 2022-12-23
  • 2022-01-06
  • 2022-12-23
  • 2021-06-22
相关资源
相似解决方案