本文介绍了Java7 ClassFormatError:创建对象时非法局部变量表长度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在执行以下代码时遇到这个奇怪的错误.

I am getting this strange error while executing the following code.

EncoderRequest encoderRequest = new EncoderRequest(sid,appTxnId,pfid,transactionType,"",isUpdatetype9,true);

我已检查所有参数值是否有效.我正在使用 java7 平台.有没有人遇到过这种情况,请帮忙.

I have checked all the parameter values are valid. I am using java7 plateform.can any one have come across this situation, please help.

以下是我得到的堆栈跟踪的一部分.

following is the part of stacktrace i am getting.

Caused by: java.lang.ClassFormatError: Illegal local variable table length 48 in method com.cmc.facts.encoder.EncoderRequest.(JLjava/lang/String;Ljava/lang/Long;Lcom/cmc/facts/enums/TransactionType;Ljava/lang/String;ZZ)V 在 com.cmc.facts.nist.NistReaderModel.preprossingOfNistFile(NistReaderModel.java:180) 在 com.cmc.facts.action.interstate.InterStateAction.uploadFIIF(InterStateAction.java:645) ... 115 更多

推荐答案

之前有过同样的错误报告,在 Junit 测试和类似的..

There have been previous reports of the same error, on Junit tests and similar..

对于他们来说,添加 JVM 参数 -XX:-UseSplitVerifier 似乎有效

For them, adding the JVM arg -XX:-UseSplitVerifier seemed to work

看看这个文章

这篇关于Java7 ClassFormatError:创建对象时非法局部变量表长度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 14:19