I have the following code:
public static void main(String[] args) {
try {
String[] studentnames = {
/* this is an array of 9000 strin
You method is too long.
Create different methods to split it and make it much more readable and maintanable.
The code of method main(String[]) is exceeding the 65535 bytes limit
As your error says the main method exceeds the limit of 65535 bytes.
Reason : Why we got this error in our code?
Solution : So what can I do for this?