jsp type = "file" 的问题

发布于 2024-10-11 06:31:05 字数 312 浏览 3 评论 0 原文

我的 JSP 页面有问题。 我有一个类型=“文件”。

<h4>Link:<input type="file" name="linkFile" value=""/></h4>

当在我的 servlet 中调用指令时:

System.out.printf(request.getParameter("linkFile"));

返回字符串是文件的名称而不是路径。

有一种方法可以获取路径而不仅仅是文件名。

谢谢。

I have a problem with a JSP page.
I have a type = "file".

<h4>Link:<input type="file" name="linkFile" value=""/></h4>

When in my servlet call the istruction:

System.out.printf(request.getParameter("linkFile"));

the return string is the name of the File and not the path.

There is a way to get a path and not only a file name.

Thanks.

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

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

发布评论

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

评论(1

a√萤火虫的光℡ 2024-10-18 06:31:05

我认为这取决于浏览器,有些浏览器发送整个路径,有些则不发送。

无论如何,文件路径与服务器端无关。如果你想上传文件,你应该使用multipart/form-data和相关函数。

I think it's browser-dependent, some browsers send the whole path, some don't.

The file path is irrelevant in the server side anyway. If you want to upload a file, you should use multipart/form-data and the related functions.

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