从Apple Script运行Java

时间:2012-08-28 15:00:36

标签: java applescript classpath

我对Apple脚本非常陌生,所以请耐心等待。我需要使用.jar运行applescript文件,jar不可执行,因此我调用class com.path.to.myClass。我的Apple脚本如下所示 -

display alert "You are about to start the image rename process." buttons {"OK", "Cancel"}
set theAnswer to button returned of the result
if theAnswer is "OK" then
    do shell script "java -classpath ./ImageRename_JAVA-1.0.0.jar:. com.mff.image.rename.Main"
else
    say "Exit"
end if

applescript和ImageRename_JAVA-1.0.0.jar都在同一个目录中,但是当我运行脚本时它会给我一个错误 -

error "Exception in thread \"main\" java.lang.NoClassDefFoundError: com/mff/image/rename/Main
Caused by: java.lang.ClassNotFoundException: com.mff.image.rename.Main
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)" number 1

我设置classpath错了吗?如果是这样,那么正确的方法是什么?另外,如何向jar添加更多classpath个?

当我从Terminal运行以下命令时,它运行得很好。

$ java -classpath ./ImageRename_JAVA-1.0.0.jar:. com.mff.image.rename.Main

我知道可以使用JAR Bundler以更好的方式完成,但我无法控制JAR及其他人开发的内容。有没有办法可以在JAR目录下的应用程序中包含所有YourApplicationName.app/Contents/MacOS/Resources/Java/,并使用类路径中的那些。

1 个答案:

答案 0 :(得分:2)

我认为您无法保证do shell script中的工作目录是什么,但您可以使用以下内容进行处理:

set scriptPath to the POSIX path of (path to me)
do shell script "SCRIPTDIR=`dirname " & scriptPath & "` ; " ¬
    & "java -classpath $SCRIPTDIR/ImageRename_JAVA-1.0.0.jar:$SCRIPTDIR com.mff.image.rename.Main"

要向类路径添加额外的JAR,您可以利用java命令提供的快捷方式,以*结尾的类路径条目包含给定目录中的所有.jar个文件。

do shell script "java -classpath " ¬
  & "/Applications/Something.app/Contents/Resources/Java/\\* com.example.MyClass"

*需要反斜杠转义以防止它被shell扩展,反斜杠本身需要在AppleScript字符串文字内进行反斜杠转义,因此\\*