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.
我必须从我的 java 代码调用 jar 文件中的其他一些类。所以它将使用哪个协议。
问候, 拉吉
你说的协议是什么意思?jar 是一个普通的 zip 文件。你只需要在你的类路径中包含 jar 就可以了。
它不需要任何协议。Jar 中的类文件可以像类路径中的任何其他类一样直接访问。
如果您有一个可运行的 jar,其中包含带有主类的可运行程序,只需使用
java -jar <你的jar文件在这里>(如果你想运行它)
否则将其导入您的项目。(不确定您提到协议的意思)