💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## IDEA中Gradle项目导入本地jar包   1.在项目下新建文件夹,我这里命名为lib                           ![](https://img.kancloud.cn/3c/f5/3cf5c2fbf6aa3381568eca50191b01fb_304x248.png) 2.复制要导入的jar包        ![](https://img.kancloud.cn/67/32/67329228f219e0597e48cf90cc108003_485x589.png) 3.将复制的jar包导入到lib文件夹下       ![](https://img.kancloud.cn/4b/da/4bda094ada3e3967abcd4236ef15e070_325x309.png) 4.配置build.gradle       ![](https://img.kancloud.cn/01/16/01169d7c0cd7b89b088a2bd61e030e62_864x441.png) 以下是我的build文件内容      ``` group 'example' version '1.0-SNAPSHOT' apply plugin: 'java' sourceCompatibility = 1.8 repositories { mavenCentral() } dependencies { testCompile group: 'junit', name: 'junit', version: '4.12' compile fileTree(dir:'lib',includes:['*jar']) } ```