Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search Coderanch
Advance search
Google search
Register / Login
Ketan Borkar
Greenhorn
+ Follow
news
2
Posts
0
Threads
since Oct 16, 2011
Merit badge:
grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads
Recent posts by Ketan Borkar
Problem with {}
since args array is not null it is printing has params. but it does not contain any arguments.
if you want to check whether there are elements in the array or not you can use length as below:
if(args!=null) { if (args.length>0) { for (i=0;i<args.length;i++) { System.out.println(args[i]); } else { System.out.println("No Params"); } }
[Added code tags - see UseCodeTags for details]
show more
12 years ago
Beginning Java
create screen comaptible for all resoluions?
try miglayout it's very easy to use and very flexible
show more
13 years ago
Swing / AWT / SWT