在asp.net mvc 2中显示文件

发布于 2024-11-06 03:22:58 字数 288 浏览 1 评论 0原文

我正在尝试从网络中的服务器位置显示文本文件,但不起作用?

  public ActionResult ShowFile()
    {
        string filepath = Server.MapPath("\\some unc path\\TextFile1.txt");

        var stream = new StreamReader(filepath);
        return File(stream.ReadToEnd(), "text/plain");

    }

i am trying to display a textfile from a server location in the network but does not work?

  public ActionResult ShowFile()
    {
        string filepath = Server.MapPath("\\some unc path\\TextFile1.txt");

        var stream = new StreamReader(filepath);
        return File(stream.ReadToEnd(), "text/plain");

    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生活了然无味 2024-11-13 03:22:58

问题是 Server.MapPath("\\some unc path\\TextFile1.txt"); 该文件不在您的服务器文档目录中,因此映射将失败。您有一个绝对路径,因此请在 StreamReader 中使用它或直接将其提供给 File() 方法。

另外你的路径也不正确。请参阅另一篇文章。

The Problem is Server.MapPath("\\some unc path\\TextFile1.txt"); The file isn't located in your server document directory, so the mapping will fail. You have an absolute path, so use this in your StreamReader or give it directly to the File() method.

Also your path is incorrect. See the other post.

不弃不离 2024-11-13 03:22:58

File 方法采用流或文件名;您正在尝试向其传递文件内容。
将其更改为

return File(@"\\some unc path\TextFile1.txt", "text/plain");

The File method takes a stream or filename; you're trying to pass it the file contents.
Change it to

return File(@"\\some unc path\TextFile1.txt", "text/plain");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文