struts2 标签?目录和文件路径标记
有没有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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要当前目录路径或文件夹,这里是 jsp 代码
,否则使用
,它允许您要动态选择文件,
您必须选择一个实际文件,否则对话框将不会消失。
但是,您可以在所需文件夹中选择一个文件,然后使用简单的脚本来截取路径的文件部分。
假设如果您从以下路径 D:/test/file.txt 选择一个文件,并且您需要文件的文件夹名称“D:/test”就是您要查找的内容,然后查看以下链接 http://pastebin.com/Kncak3sr。我已将代码粘贴到那里。
if you want the current directory path or folder here is the jsp code
otherwise use the
<input type="file" id="fileBrowser" onchange="test()"/>
which allows you to choose file dynamicallyyou 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.
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.