struts2 标签?目录和文件路径标记

发布于 2024-10-22 00:16:46 字数 151 浏览 0 评论 0原文

有没有Struts2标签可以让你选择文件夹的路径? 有 jquery 或 html 或 jsp 的解决方案吗? 我需要这样的解决方案,客户端必须从硬盘选择文件夹路径

<s:folder name="xmlFolder" />

is there any Struts2 tag that lets you choose the path of a folder ?
any solutions with jquery or html or jsp ?
I need a solution like that, client have to choose path of folder from Hard disk

<s:folder name="xmlFolder" />

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

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

发布评论

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

评论(1

橘亓 2024-10-29 00:16:46

如果您想要当前目录路径或文件夹,这里是 jsp 代码

 <%
String folder= request.getRealPath("");
  %>

,否则使用 ,它允许您要动态选择文件,

您必须选择一个实际文件,否则对话框将不会消失。
但是,您可以在所需文件夹中选择一个文件,然后使用简单的脚本来截取路径的文件部分。

       <script type="text/javascript">
    function test()
  {
     var filePath=document.getElementById("fileBrowser").value;
var index=filePath.lastIndexOf("\\");
alert(filePath.substring(0,index));
    }
    </script>

假设如果您从以下路径 D:/test/file.txt 选择一个文件,并且您需要文件的文件夹名称“D:/test”就是您要查找的内容,然后查看以下链接 http://pastebin.com/Kncak3sr。我已将代码粘贴到那里。

if you want the current directory path or folder here is the jsp code

 <%
String folder= request.getRealPath("");
  %>

otherwise use the <input type="file" id="fileBrowser" onchange="test()"/> which allows you to choose file dynamically

you must select an actual file, or the dialog box won't go away.
you can however, select a file within the desired folder, and then use a simple script to chop off the file part of the path.

       <script type="text/javascript">
    function test()
  {
     var filePath=document.getElementById("fileBrowser").value;
var index=filePath.lastIndexOf("\\");
alert(filePath.substring(0,index));
    }
    </script>

suppose if you choose a file from the following path D:/test/file.txt and you need the folder name of the file "D:/test" is the thing your looking for then see the following link http://pastebin.com/Kncak3sr. i have pasted the code over there.

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