AppleScript 运行 .jar 并将删除的文件的名称作为参数传递
我想运行一个以文件名作为参数的 jar 文件。这个文件名应该是拖放到 .app(AppleScript)上的文件之一。
我是 AppleScript 的新手,所以任何帮助将不胜感激!
谢谢!
I want to run a jar file that has a filename as argument. This filename should be the one of a file that is dropped onto the .app (the AppleScript)
I'm a newbie in AppleScript, so any help would be appreciated!
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我怀疑是否有 AppleScript 命令来运行 jar 文件,因此您可以从 AppleScript 中运行 shell 脚本的片段。例如:
本示例将打开一个或多个放置的 jar 文件。请注意,明确的代码行告诉应用程序“Finder”,意味着将使用 Finder 的别名类型(这是成功获取 currentJar 的名称所必需的。
on open< /em> 处理程序是在用户将一个或多个文件拖放到 AppleScript 上的事件上运行的处理程序(文件被传递到第一个参数,在本例中名为 jarFiles)
。这有帮助。
I doubt that there is an AppleScript command to run the jar file, so instead you could run a snippit of shell scripting from within the AppleScript. For example:
This example will open one or more dropped jar files. Note that the explicit line of code, tell application "Finder", means that the Finder's alias type will be used (which is necessary to get the name of the currentJar successfully.
The on open handler is the handler that is run on the event that the user drops one or more files onto the AppleScript (with the files being pased to the first argument, name jarFiles in this case).
Hope this helps.