无法从 shell 脚本运行 java 应用程序

无法从 shell 脚本运行 java 应用程序

下载并解压zip包后,我将modelsphere.bat文件复制到modelsphere.sh,并将内容更改为:

 java -ms64m -mx512m -ss16m -classpath "./modelsphere.jar:./resources.zip:./resources:./targets:./lib/jakarta-regexp-1.5/jakarta-regexp-1.5.jar:./lib/velocity-1.6.1/velocity-1.6.1.jar:./lib/jazzy-core/jazzy-core.jar:./lib/jython-2.2.1/jython.jar:./lib/velocity-1.6.1/lib/commons-collections-3.2.1.jar:./lib/velocity-1.6.1/lib/commons-lang-2.4.jar:./lib/lablib-checkboxtree-3.0.2.jar" org.modelsphere.sms.Application

但是当使用命令“./modelsphere.sh”运行modelsphere.sh时,抛出以下异常:

 Exception in thread "main" java.lang.NoClassDefFoundError: org/modelsphere/sms/Application
Caused by: java.lang.ClassNotFoundException: org.modelsphere.sms.Application
    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)
.  Program will exit.in class: org.modelsphere.sms.Application

当我运行命令时,

java -ms64m -mx512m -ss16m -classpath "./modelsphere.jar:./resources.zip:./resources:./targets:./lib/jakarta-regexp-1.5/jakarta-regexp-1.5.jar:./lib/velocity-1.6.1/velocity-1.6.1.jar:./lib/jazzy-core/jazzy-core.jar:./lib/jython-2.2.1/jython.jar:./lib/velocity-1.6.1/lib/commons-collections-3.2.1.jar:./lib/velocity-1.6.1/lib/commons-lang-2.4.jar:./lib/lablib-checkboxtree-3.0.2.jar" org.modelsphere.sms.Application

这是“modelsphere.sh”文件的内容,它起作用了。

为什么?如何使用“modelsphere.sh”这个 shell 文件启动 Open ModelSphere?

有人能给我一些建议吗?提前谢谢了。

答案1

它可能具有 DOS 行尾(\r\n 而不是 \n)。请参阅http://mywiki.wooledge.org/BashFAQ/052

为了更好的练习,你应该确保文件的第一行是#!/bin/sh

相关内容