我无法使用以下命令启动带有附加配置文件的jvm:
java -Xverify:none -agentlib:JPIBootLoader=JPIAgent:server=enabled;CGProf TestClass
我收到以下错误:
Error occurred during initialization of VM
agent library failed to init: JPIBootLoader
CGProf: command not found
在Windows上面的命令成功运行,我从类的main方法获取消息。
linux详细信息
uname -a
Linux michael 3.8.0-19-generic#29-Ubuntu SMP Wed Apr 17 18:16:28 UTC 2013 x86_64 x86_64 x86_64 GNU / Linux
LD_LIBRARY_PATH
= /家庭/迈克尔/蚀/ TPTP / agntctrl.all_platforms-TPTP-4.7.2 / linux_em64t / LIB /:/家庭/迈克尔/蚀/ TPTP / linux.gtk.x86-TPTP- 4.7.2 /插件/ org.eclipse.tptp.platform.jvmti.runtime_4.6.3.v201102041710 / agent_files / linux_em64t /
TPTP_AC_HOME
= /家庭/迈克尔/蚀/ TPTP / agntctrl.all_platforms-TPTP-4.7.2 / linux_em64t
答案 0 :(得分:2)
分号导致问题。在linux ;
中是同一行上两个单独命令之间的分隔符。它不是将事物解释为单个命令,而是认为它是两个命令
java -Xverify:none -agentlib:JPIBootLoader=JPIAgent:server=enabled;
和
CGProf TestClass
两个都失败了。尝试使用双引号来防止shell将其拆分
java -Xverify:none -agentlib:"JPIBootLoader=JPIAgent:server=enabled;CGProf" TestClass
您可能需要尝试使用引号的最佳位置。