thumpkidd9
Programmer
Ok. I am extending the class HttpServlet and using the method
in that method, I called another method called
that populates a 2-d array called list. I initialize this globally like so.
When I run the program, any variable that I initialized globally is null or 0 in the doGet() method. Is there anyway I can get access to these variables from the protected method? Do I have to declare them differently?
Thanks
Code:
protected void doGet(...) {}
Code:
static void parse_Log()
Code:
static String list[][] = new String[list_size][ele_size];
Thanks