How to wildcard include JAR files when compiling?

后端 未结 9 684
面向向阳花
面向向阳花 2020-12-01 05:30

I have the following in a java file (MyRtmpClient.java):

import org.apache.mina.common.ByteBuffer;

and ByteBuffer is inside a

9条回答
  •  独厮守ぢ
    2020-12-01 05:50

    Probably below syntax will work on windows dos command

    javac -cp ".;first.jar;second.jar;third.jar" MyRtmpClient.java
    

提交回复
热议问题