How to declare the listarray header to return the listarray to other method
public static String[] init()throws IOException
return testArray;
i know that is wrong, how to correct it
Printable View
How to declare the listarray header to return the listarray to other method
public static String[] init()throws IOException
return testArray;
i know that is wrong, how to correct it
public static List[] init()throws IOException {
List[] testArray = null;
//do ur business
return testArray;
}