Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何通过 jruby on rails 应用程序运行可执行的 jar 文件?我将在哪里包含运行我的 jar 文件的代码?
我已经看了一遍,但还没有看到一个定义的方法来做这种事情,而且我对 Rails 也很陌生。
显然,您可以做 3 件事来运行外部命令:
command
因此,在您的情况下,您的 Ruby 代码可能是:
`java -jar <name of jar>.jar`
它会起作用。可能您必须在此处添加 Java 的完整路径,但您可能必须自己尝试一下。