欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Java使用JSONObject需要的6個jar包下載地址

 更新時間:2020年11月13日 10:17:52   作者:默默J  
這篇文章主要介紹了Java使用JSONObject需要的6個jar包下載地址,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧

JSONObject所必需的6個jar包:

  • commons-beanutils-1.7.0.jar
  • commons-collections-3.1.jar
  • commons-lang-2.5.jar
  • commons-logging.jar
  • ezmorph-1.0.3.jar
  • json-lib-2.1-jdk15.jar

網(wǎng)上有很多的下載jar包地址,但是我個人比較喜歡的是Maven網(wǎng)站,里面一般提供了各種版本。

這個網(wǎng)址是maven倉庫的國內(nèi)鏡像地址:

http://mvnrepository.com

步驟圖解:

一、搜索要下載的jar包

二、在紅色箭頭里面選擇理想的版本

如果項目沒有jar版本要求,盡量選擇下載量多的版本

三、點擊合適的版本

四、一般都選擇jar進(jìn)行下載

下載之后就可以成功了,

如果使用的Maven 就在下載頁面下拉就可以看到Maven的jar包版本詳情,然后復(fù)制粘貼就可以了

如果后續(xù)有jar不能下載的情況,可以使用maven鏡像,pom文件為:

 <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
    <dependency>
      <groupId>com.alibaba</groupId>
      <artifactId>fastjson</artifactId>
      <version>1.2.28</version>
    </dependency>


    <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
    <dependency>
      <groupId>commons-beanutils</groupId>
      <artifactId>commons-beanutils</artifactId>
      <version>1.9.2</version>
    </dependency>


    <!-- https://mvnrepository.com/artifact/commons-collections/commons-collections -->
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId>
      <version>3.2.1</version>
    </dependency>


    <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
    <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
      <version>2.6</version>
    </dependency>


    <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.1.1</version>
    </dependency>


    <!-- https://mvnrepository.com/artifact/net.sf.ezmorph/ezmorph -->
    <dependency>
      <groupId>net.sf.ezmorph</groupId>
      <artifactId>ezmorph</artifactId>
      <version>1.0.6</version>
    </dependency>


    <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib -->
    <dependency>
      <groupId>net.sf.json-lib</groupId>
      <artifactId>json-lib</artifactId>
      <version>2.4</version>
      <classifier>jdk15</classifier>
    </dependency>

到此這篇關(guān)于Java使用JSONObject需要的6個jar包下載地址的文章就介紹到這了,更多相關(guān)JSONObject jar包內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評論