aspose file tools
The moose likes Beginning Java and the fly likes Pass 2D array between methods Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Pass 2D array between methods" Watch "Pass 2D array between methods" New topic
Author

Pass 2D array between methods

Ralph King
Greenhorn

Joined: Sep 05, 2011
Posts: 1
all,

I am struggling to pass my 2D array between classes. The following getMethod should return a valid 2D array:

public String[][] getResults(){
return (resultSet);
}


However when i try to access from another class my first attempts fall woefully short:

String test[][]=newData.getResults();

When I try to access elements they are all null. how do i accomplish this?

All help very welcome.
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

Welcome to the Ranch!

Where and how have you initialized resultSet?


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32708
    
    4
Welcome again

I am afraid I am going pedantic: there is no such thing in Java™ as a 2D array. There are arrays of arrays, however.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Pass 2D array between methods
 
Similar Threads
web application design
getting 2D array view in jsp from actionform properties
Searching an Array
About access to relevant variables from variable name
remove duplicates from an array