From:http://publib.boulder.ibm.com/infocenter/wasinfo/v4r0/index.jsp?topic=/com.ibm.support.was.doc/html/Java_SDK/1177375.html
Solution
The Java� specification states that there is a 64 K limit on the size of methods in Java. The JVM� does not execute methods that exceed this limit.
It is possible to compile methods larger than 64 K, but the JVM will not run these methods. Consequently, the error occurs during runtime, while attempting to execute Java methods that are greater than 64 K.
A code too large for try statement error can still be issued while compiling a JSP. The compiler limitation does not allow try/catch blocks to have a start or end location greater than 64 K into the method code. Therefore, compiler limitations are usually caught when a try/catch block overlaps the 64 K boundary.
The workaround is to refactor the code into smaller methods or try/catch blocks.
code too large for try statement (try区块过长)
本文解释了Java规范中关于方法大小64K的限制,并详细说明了这一限制如何影响运行时错误的发生。此外,还提供了当编译的JSP文件中的try/catch块跨越64K边界时引发错误的解决方案。

被折叠的 条评论
为什么被折叠?



