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.
我在 mac 终端中使用 kotlinc,但是我想在 kotlinc 中使用诸如 rest 客户端之类的库。有没有办法包括在内?就像在python中导入
使用cp选项。
cp
-classpath (-cp) 查找用户类文件的路径
kotlinc -cp path_to_commons-lang-2.6.jar
>>> import org.apache.commons.lang.StringUtils; >>> >>> StringUtils.isBlank(" ") true >>>