且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

" code太大"在Java编译错误

更新时间:2022-10-15 17:25:26


  

在Java类中的一个方法可能是在字节code最64KB。


块引用>

但你应该打扫一下!

使用的.properties 文件来存储这些数据,并通过java.util.Properties$c$c>

您可以通过将的.properties 文件在classpath做到这一点,使用:

 属性属性=新特性();
为InputStream的InputStream =的getClass()的getResourceAsStream(yourfile.properties);
properties.load(InputStream的);

Is there any maximum size for code in Java? I wrote a function with more than 10,000 lines. Actually, each line assigns a value to an array variable.

        arts_bag[10792]="newyorkartworld";
        arts_bag[10793]="leningradschool";
        arts_bag[10794]="mailart";
        arts_bag[10795]="artspan";
        arts_bag[10796]="watercolor";
        arts_bag[10797]="sculptures";
        arts_bag[10798]="stonesculpture";  

And while compiling, I get this error: code too large

How do I overcome this?

A single method in a Java class may be at most 64KB of bytecode.

But you should clean this up!

Use .properties file to store this data, and load it via java.util.Properties

You can do this by placing the .properties file on your classpath, and use:

Properties properties = new Properties();
InputStream inputStream = getClass().getResourceAsStream("yourfile.properties");
properties.load(inputStream);