Asmita Khamkar

Greenhorn
+ Follow
since Mar 28, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Asmita Khamkar

Hi Abhay Agrawal,

I have cleared SCJP 5, Please give the details to upgrade to Java 7.
Hi,

I am SCJP 5 certified, do I have to clear OCJA7 before OCPJP7. Please help me.
Hi,

I am creating a project in java using netbeans, it is working properly but I want to call reports through forms. When I try to import net.sf.jasperreports.engine.*; or any files related to jasperreports it gives error at that line. The reports are already created & I can view them through preview, but I want to call them through form. what should I set my class path to or where should I place my jar files to import the required packages.

Also my netbeans gives me an error (network adapter error couldnot establish connection) when I am connected to internet
& now suddenly it sometimes gives the same error even when I am not connected & suddenly starts working.

My database connectivity is with oracle. The code used to connect with oracle is working properly. The above given error is on my laptop only on my friends pc it works even when her pc is connected to internet.

Can anyone please help me, its really urgent. Project submission on 27th oct. Please help me.

Asmita
Hi,
I am also getting Network adapter error could not establish connection, but I get this error when my internet connection is on, otherwise it connects to oracle properly and all my queries work properly when my Internet is off.
Hi,
I am also getting Network adapter error could not establish connection, but I get this error when my internet connection is on, otherwise it connects to oracle properly and all my queries work properly when my Internet is off.
Thank you to all.
14 years ago
Scanner class has the methods hasNext(), hasNextInt(), hasNextBoolean(). So in the first while loop it is only checking s1 i.e s1.hasNext() and concatenating s in hits variable every time this loop is run. In the next while loop it is checking s2 i.e. s2.hasNext() and within that loop it is checking s2.hasNextInt() or s2.hasNextBoolean() in if and is accordingly concatenating "i", "b" & "s2" in hits. Remember there are variables b and b2 declared as boolean but what you are concatenating in hits are strings "s", "b", "i" and not the values in variable. Try to understand the flow and I hope this clears your doubt.

Asmita
Hi,
I cleared my scjp 5.0, Thank you to all on JavaRanch for all the help they gave me.
I wanted to ask after clearing 1.5 should I go for SCWCD or SCJP 1.6 ??

Asmita
14 years ago
Thank you very much for your help sir got my mistake Thank you very much.

Asmita
I know sir its equals() & hashcode() methods I have written correctly in code, the code is compiling and running properly but it is not giving the output as written in book.

Asmita