处理报错:java/lang/noclassdeffounderror: java/lang/object-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 2090559
  • 博文数量: 195
  • 博客积分: 4378
  • 博客等级: 上校
  • 技术积分: 4046
  • 用 户 组: 普通用户
  • 注册时间: 2007-09-09 11:37
个人简介

白天和黑夜只交替没交换无法想像对方的世界

文章分类

全部博文(195)

文章存档

2014年(3)

2013年(20)

2012年(18)

2011年(107)

2010年(17)

2009年(5)

2008年(20)

2007年(5)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: linux

2012-05-23 11:42:54

处理报错:java/lang/noclassdeffounderror: java/lang/object
 
操作系统环境:centos6.0  2.6.32-220.el6.x86_64
jdk版本环境:jdk1.5.0_22
操作系统原来安装的是jdk1.6,后来开发人员要求java程序使用jdk1.5版本的。帮开发下载jdk1.5,
安装完jdk ,设定环境变量后出现这个错误:

  1. [root@fztest97 lib]# javac
  2. error occurred during initialization of vm
  3. java/lang/noclassdeffounderror: java/lang/object
  4. [root@fztest97 lib]# java
  5. error occurred during initialization of vm
  6. java/lang/noclassdeffounderror: java/lang/object

首先要确认的是环境变量的设置是否正确,其次,需要确认的就是lib和jre/lib文件夹中的rt和tools是否是打包后的形式,如果发现rt.pack 和 tools.pack 那么多半问题就出在这里。
解决方法也很简单,只要将相应文件解压成rt.jar 和 tools.jar,可以使用bin里面的unpack200工具,
如:unpack200 rt.pack rt.jar
 
/apps/usr/java/jdk1.5.0_22/lib/tools.pack  转为  tools.jar  
/apps/usr/java/jdk1.5.0_22/jre/lib/rt.pack   转为  rt.jar
 
执行如下操作命令:
 

  1. [root@fztest97 ]# cd /apps/usr/java/jdk1.5.0_22/lib/
  2. [root@fztest97 lib]# unpack200 tools.pack tools.jar
  3. [root@fztest97 lib]# ls
  4. dt.jar ir.idl jconsole.jar orb.idl sa-jdi.jar tools.jar tools.pack
  5. [root@fztest97 lib]# cd /apps/usr/java/jdk1.5.0_22/jre/lib
  6. [root@fztest97 lib]# unpack200 rt.pack rt.jar
  7. [root@fztest97 lib]# ll rt.*
  8. -rw-r--r--. 1 root root 40232487 may 23 19:23 rt.jar
  9. -rw-r--r--. 1 root root 12960918 may 23 19:07 rt.pack


 
再次执行如下命令,进行验证:

  1. [root@fztest97 lib]# java -version
  2. java version "1.5.0_22"
  3. java(tm) 2 runtime environment, standard edition (build 1.5.0_22-b03)
  4. java hotspot(tm) 64-bit server vm (build 1.5.0_22-b03, mixed mode)

  5. [root@fztest97 lib]# javac
  6. usage: javac <options> <source files>
  7. where possible options include:
  8.   -g generate all debugging info
  9.   -g:none generate no debugging info
  10.   -g:{lines,vars,source} generate only some debugging info
  11.   -nowarn generate no warnings
  12.   -verbose output messages about what the compiler is doing
  13.   -deprecation output source locations where deprecated apis are used
  14.   -classpath <path> specify where to find user class files
  15.   -cp <path> specify where to find user class files
  16.   -sourcepath <path> specify where to find input source files
  17.   -bootclasspath <path> override location of bootstrap class files
  18.   -extdirs <dirs> override location of installed extensions
  19.   -endorseddirs <dirs> override location of endorsed standards path
  20.   -d <directory> specify where to place generated class files
  21.   -encoding <encoding> specify character encoding used by source files
  22.   -source <release> provide source compatibility with specified release
  23.   -target <release> generate class files for specific vm version
  24.   -version version information
  25.   -help print a synopsis of standard options
  26.   -x print a synopsis of nonstandard options
  27.   -j<flag> pass <flag> directly to the runtime system

到此为止,jdk1.5安装配置成功。
阅读(12310) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图