如何恢复所有选定的文件路径

发布于 2024-09-27 22:45:47 字数 559 浏览 0 评论 0原文

我在jsp页面中放置了一个浏览器,当我通过浏览器选择文件时 我正在做一个 System.outn 选择文件路径,我只有名称, 我需要恢复所有选定的文件路径

<form:form onsubmit="document.getElementById('idButton').value='Traîtement en cours ...'" action="ajouter.html"
           method="POST">



                <input type="file" name="cible">

                <input type="submit" id="idButton" name="ajouter" value="Ajouter" tabindex="50"/>

</form:form>


(ActionForm)

 String leChemin = (String) request.getParameter("cible");
 System.out.println("leChemin = " + leChemin);

I put a browser in my jsp page, and when I select the file via the browser
and I'm doing a System.outn select the file path, I only have the name,
and I need to recover all the file path selected

<form:form onsubmit="document.getElementById('idButton').value='Traîtement en cours ...'" action="ajouter.html"
           method="POST">



                <input type="file" name="cible">

                <input type="submit" id="idButton" name="ajouter" value="Ajouter" tabindex="50"/>

</form:form>


(ActionForm)

 String leChemin = (String) request.getParameter("cible");
 System.out.println("leChemin = " + leChemin);

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

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

发布评论

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

评论(2

∝单色的世界 2024-10-04 22:45:47

您不能执行此操作,出于安全原因,不会显示来自客户端的文件路径。
但如果确实需要获取路径,就不要依赖浏览器使用小程序。

You cannot do this, for security reasons, file path from clients are not shown.
But if really need to get the path, do not rely on the browser use applet.

琉璃繁缕 2024-10-04 22:45:47

尽管如此,这条路对你来说毫无用处。此外,出于隐私考虑,了解客户端计算机上的路径并不是一个好主意。

The path would be useless for you, none the less. Moreover, as a privacy concern, its not really a good idea to know the path at client's machine.

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