欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决XML转JSON串时报错:Exception in thread "main" java.lang.NoClassDefFoundError: nu/xom/Serializer

程序员文章站 2022-07-15 10:39:29
...

环境:Eclipse、JDK1.6

  1. 在此环境下需安装Maven,安装步骤参考:https://jingyan.baidu.com/album/77b8dc7ffea57a6175eab67f.html?picindex=1
  2. 我下载的maven的版本是 apache-maven-3.2.5-bin.tar.gz 下载地址:
    http://maven.apache.org/download.cgi#

解决XML转JSON串时报错:Exception in thread "main" java.lang.NoClassDefFoundError: nu/xom/Serializer
解决XML转JSON串时报错:Exception in thread "main" java.lang.NoClassDefFoundError: nu/xom/Serializer
3. maven conf/settings.xml配置:
C:\java\eclipseWorkspaces\maven3.2.5\apache-maven-3.2.5

4.项目中 pom.xml配置:

<dependency>  
           <groupId>net.sf.json-lib</groupId>             
           <artifactId>json-lib</artifactId>  
           <version>2.4</version>  
           <classifier>jdk15</classifier>  
        </dependency>  
        <dependency>  
            <groupId>xom</groupId>  
            <artifactId>xom</artifactId>  
            <version>1.2.5</version>  
        </dependency>

解决XML转JSON串时报错:Exception in thread "main" java.lang.NoClassDefFoundError: nu/xom/Serializer
5.在上述操作后发现其项目找不到pom.xml文件时或者发现不是maven项目时,可以转换为maven项目,如下图操作:
解决XML转JSON串时报错:Exception in thread "main" java.lang.NoClassDefFoundError: nu/xom/Serializer