从 Ruby on Rails 中的文件选择器对话框获取文件路径

发布于 2024-11-19 15:40:56 字数 158 浏览 2 评论 0原文

我想在我的应用程序中导入一些 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 技术交流群。

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

发布评论

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

评论(1

月下伊人醉 2024-11-26 15:40:56

还有人回答这个吗???

最简单的方法是使用 gem green_shoes 安装,

gem install green_shoes

请参阅 http://ashbb.github.com/green_shoes/< /a>

然后在你的脚本中

require 'green_shoes'
filename = ask_open_file

就是这样

Nobody else answered this ???

The simplest way is with the gem green_shoes which you install with

gem install green_shoes

See http://ashbb.github.com/green_shoes/

Then in your script

require 'green_shoes'
filename = ask_open_file

That's it

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