从 Ruby on Rails 中的文件选择器对话框获取文件路径
我想在我的应用程序中导入一些 CSV 文件,但应用程序只需要文件的完整路径。如果我在应用程序中硬编码文件的路径,它会很好地工作,但我希望用户自己通过文件选择器对话框(如 Java 中的 JFileChooser)选择自己的文件。由此,我想获取所选文件的路径。有谁可以帮助我吗?
多谢 !
I would like to import some CSV files in my application, but the application only needs the full path of the file. If I hard-code the file's path in the application, it works well, but I want the user himself to choose his own file by a file chooser dialog (like the JFileChooser in Java). From this, I would like to get the path of the selected file. Is there anyone that can help me ?
Thanks a lot !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
还有人回答这个吗???
最简单的方法是使用 gem green_shoes 安装,
请参阅 http://ashbb.github.com/green_shoes/< /a>
然后在你的脚本中
就是这样
Nobody else answered this ???
The simplest way is with the gem green_shoes which you install with
See http://ashbb.github.com/green_shoes/
Then in your script
That's it