View Single Post
  #3 (permalink)  
Old 07-07-2009, 07:40 PM
Json's Avatar
Json Json is online now
Super Moderator
 

Join Date: Jul 2009
Location: Manchester, United Kingdom
Posts: 1,188
Thanks: 57
Thanked 137 Times in 133 Posts
Json will become famous soon enoughJson will become famous soon enoughJson will become famous soon enough

I'm feeling Happy
Default Re: how to solve this type of stackoverflowerror...

I would say this is happening because you are calling your main method from within your main method hence a stack overflow.

Try removing the last couple of lines of code.

Java Code
automation1.main(args);
		 
            
    	if(chld.length==0)
    	{
    		automation1.main(args);
    		
    	}
// Json
Reply With Quote