Eclipse的ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code

今天遇到一个问题:Eclipse的ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2

 

上网查到结果如下:

 ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2 JDWP exit error AGENT_ERROR_NO_JNI_ENV(183): [../../../src/share/back/util.c:820]

请在代码最后加入以下语句:System.exit(0)即可(在main函数结束时,添加system.exit(0);),

注意,只需要在这种情况下加,在正式运行时不需要。

补充说明:

return 和 system.exit()有什么区别:

1.return是返回程序上一层,system.exit()是返回程序最上层

2.return中断当前方法,system.exit()中断整个程序,应该是关闭JVM了;

 

在使用eclipse编译java程序时,会出现ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2的错误。

经网上查实发现,这是eclipse与jdk1.6的兼用问题,现在没解决

解决方法:

就是在main的后面添加System.exit(0)来解决这个问题

转自:http://blog.csdn.net/config_man/archive/2010/03/17/5390831.aspx

http://apps.hi.baidu.com/share/detail/22479756

你可能感兴趣的:(Environment)