如何恢复所有选定的文件路径
我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能执行此操作,出于安全原因,不会显示来自客户端的文件路径。
但如果确实需要获取路径,就不要依赖浏览器使用小程序。
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.
尽管如此,这条路对你来说毫无用处。此外,出于隐私考虑,了解客户端计算机上的路径并不是一个好主意。
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.