I have the following code:
public static void main(String[] args) {
try {
String[] studentnames = {
/* this is an array of 9000 strings... */
};
}
}
I get the following error when trying to compile this:
The code of method main(String[]) is exceeding the 65535 bytes limit
So to fix this problem, break up your
main(String[] args)method in to multiple sub methods.