Mohammed shareef

Greenhorn
+ Follow
since Aug 08, 2007
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Mohammed shareef

yes i have copied .class file in the web-inf\classes and web.xml file in web-inf folder i have also tried by giving different urls , im able to see my project folder on tomcat dashboard
im using tomcat 6 and jdk1.6 windows 7, and i want to know that is there any problem with windows7
14 years ago
Hi ,i have been trying to execute my first servlet program ,but it is showing 404 error ,i have uncomment the servlet invoker also,i have the change port number also ,the application which i have deploy it showing that application at tomcat dashboard , im getting the jsps properly
im working on windows 7
please Help me sort out this problem.
14 years ago
Excellent Al Mamun ,but you have not explain why control is going to i+1 position,then coming back to i position.
Instead Of Anonymous array use normal array declaration &initialization,u will get expected output.There is some mystery with enhance for with anonymous array & if we increase length of Anonymous array to 5 it is giving ArrayIndexOutOfBound Exception .Let's wait &see who willl solve this mystery.
Can any one explain me when does finalize() is invoke or call by gc ,explain briefly ,if possible with example,Thanking you in advance.
Can any one send me enthuware series of scjp5 to me ,I will be very thank full to him/her. [E-mail deleted by Jesper Young]
[ August 12, 2007: Message edited by: Jesper Young ]
Don't loose your confident , revised once again all the portion,go through it ,first have basic knowledge of all the topics ,then try hope you will get it.
Yes you can ,This is the time to hit the goal ,Why are you not confident?
Confidence is the Half Victory .Don't loose your confidence ,Yes you can do it.Best of luck for your exam
here is the code
int i1= -123;
int i2= 12345;
System.out.println(">%1$(7d< \n",i1);
System.out.println(">%0,7d <\n",i2);
System.out.println(">%+-7d< \n",i2);
System.out.println(">%2$b + %1$5d< \n",i1,false);
This produces output :
>(123)<
>012,345<
>+12345<
>false + -123<
In above code i can understand everything except the digit 7,what is the reason for putting 7 in first three line& 5 in the last line.can any one explain it? Thanking you in advance.
Can you help me in understanding the code on page No 491 Chapter 6 in Kathy Siera& Bert Bates ,please focus on 7d specially ,d is for integer but what 7 is for?