Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有时我们在使用 BTrace 时需要依赖第三方 jar 文件。
也许我需要导入 a.jar 和 b.jar 来支持 BTrace 脚本。我该如何拼写-classpath参数?
-classpath
我已经解决了这个问题。
-classpath参数可以是jar文件的多路径。
在 Windows 之类的-classpath ./a.jar;./b.jar
-classpath ./a.jar;./b.jar
和在linux中一样-classpath ./a.jar:./b.jar
-classpath ./a.jar:./b.jar