如何从 java web 应用程序创建 http 可见文件?

发布于 2024-10-13 03:25:14 字数 707 浏览 1 评论 0原文

如何在 web/myFiles 文件夹中的 java Web 应用程序中创建通过 http 协议可见的文件?

这可能吗?

对于以下代码:

String realPath = getServletContext().getRealPath("/");
    System.out.println(realPath);

    try {
        BufferedWriter out = new BufferedWriter(new FileWriter( realPath + "\\myFiles\\test.txt"));
        out.write("aString\nthis is a\nttest");
        out.close();
    } catch (IOException e) {
        System.out.println("Exception " + e);

    }

我不断收到错误:

Exception java.io.FileNotFoundException: C:\Documents and Settings\Andrei\My Documents\NetBeansProjects\SemanticCashUpV1.0\build\web\myFiles\test.txt (The system cannot find the path specified)

How can I create files visible by http protocol from java web application in web/myFiles folder ?

Is this even possible ?

for the following code :

String realPath = getServletContext().getRealPath("/");
    System.out.println(realPath);

    try {
        BufferedWriter out = new BufferedWriter(new FileWriter( realPath + "\\myFiles\\test.txt"));
        out.write("aString\nthis is a\nttest");
        out.close();
    } catch (IOException e) {
        System.out.println("Exception " + e);

    }

i keep getting the error :

Exception java.io.FileNotFoundException: C:\Documents and Settings\Andrei\My Documents\NetBeansProjects\SemanticCashUpV1.0\build\web\myFiles\test.txt (The system cannot find the path specified)

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

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

发布评论

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

评论(1

皓月长歌 2024-10-20 03:25:14

是的,

您需要在公共网络区域创建文件。

靠近 WEB-INF 目录。

获取公共网络空间的路径

您可以通过request.getServletContext().getRealPath("/");

Yes possible,

You need to create file in public web area.

near to WEB-INF Dir.

you can get path to public web space by

request.getServletContext().getRealPath("/");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文