• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

I want Check stdId&Pwd Using Iteration I can't declar iterator variable outside Loop please help me,

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
 
Ranch Hand
Posts: 225
Spring Notepad Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

if(stdId.equalsIgnoreCase(std.getStdid())&& stdPwd.equalsIgnoreCase("nayak"));//give error




Please remove the semicolon(;) at the end of if statement.

Also, next time onwards always give error stack trace for better understanding of problem.


---------
Regards
Ahmed
 
RajeshKumar Nayak
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
give error for std. declaration it error because outside of the loop how i can use this object for test case please
not ; this is mistake for write can someone solve my problem


Thanks Regards
Rajesh kumar Nayak
 
Ranch Hand
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Have you try this,



without --> com.rajesh.

--------------------------
or

without changing anything and if you put the following line

System.out.println("size = "+plist.size());

before calling Iterator it=plist.iterator();

what have you got?
reply
    Bookmark Topic Watch Topic
  • New Topic