AppleScript 运行 .jar 并将删除的文件的名称作为参数传递

发布于 2024-10-15 06:31:44 字数 118 浏览 3 评论 0原文

我想运行一个以文件名作为参数的 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 技术交流群。

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

发布评论

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

评论(1

萌辣 2024-10-22 06:31:44

我怀疑是否有 AppleScript 命令来运行 jar 文件,因此您可以从 AppleScript 中运行 shell 脚本的片段。例如:

on open jarFiles
    tell application "Finder"
        repeat with currentJar in jarFiles
            set the shellScript to "java -jar " & ¬
                quoted form of ((name of currentJar) as text)
            do shell script shellScript
        end repeat
    end tell
end open

本示例将打开一个或多个放置的 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:

on open jarFiles
    tell application "Finder"
        repeat with currentJar in jarFiles
            set the shellScript to "java -jar " & ¬
                quoted form of ((name of currentJar) as text)
            do shell script shellScript
        end repeat
    end tell
end open

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.

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