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

dynamic array

ramesh kancherla
Ranch Hand

Joined: May 01, 2008
Posts: 120
i am creating dynamic array

I got null pointer exception


String [][] a = null ;
a[0][0]="hi";

how can i create dynamic array
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32644
    
    4
What's a dynamic array?

You have initialised your array to null and tried to use it. No wonder you have a NullPointerException.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: dynamic array
 
Similar Threads
Possibility for (Custom type objects) & (object arrays) in Form Bean
comparing and sorting arraylist of arraylist
Garbage collection - arrays
How to pass dynamic array content from javascript to jsp
Response as PDF