Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #4K
~3K People Reached
Favorite Tags

15 Posted Topics

Member Avatar for eddy556

two strings are equal in case of equals method if both strings that you are comparing have the same characters and have the same case such as "hello".equals("hello") will return true as both the strings have the same characters h,e,l,l,o and they do have the same length and also have …

Member Avatar for stultuske
0
782
Member Avatar for Parsu7

Hi Actually i want to know the driver name to use for database connection using Oracle XE.

Member Avatar for debasisdas
0
77
Member Avatar for Parsu7
Member Avatar for jwenting
0
87
Member Avatar for Parsu7

Is it necessary to write a corresponding servlet for each JSP page in case of MVC Architecture?

Member Avatar for Parsu7
0
116
Member Avatar for Parsu7
Member Avatar for Parsu7

Is it necessary to declare an inner class private?If it is then plz specify the reason why is it necessary to declare an inner class private?

Member Avatar for jwenting
0
146
Member Avatar for Parsu7
Member Avatar for Parsu7

Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 10 at java.lang.String.substring(String.java:1935) at exceptionprac.Excp.main(Excp.java:22) Java Result: 1 I just want to know what is the meaning of Java Result: 1

Member Avatar for bugmenot
0
104
Member Avatar for Parsu7

I just want to know what happens when this code is written: public static void main(String[] args) throws IOException

Member Avatar for Parsu7
0
158
Member Avatar for Parsu7

Suppose i try to instantiate an abstract class then a checked exception is thrown,but who handles it or how is it handled?

Member Avatar for Parsu7
0
140
Member Avatar for vladdy19

use the following code to convert any string to integer. import java.io.*; public class Strng_to_intg{ public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int s=br.read(); System.out.println(s); } } try this code to convert any string to int even the string "asu".

Member Avatar for javaAddict
0
201
Member Avatar for Rentro

[QUOTE=Rentro;57954]I have a string that looks for example like this: "aabbccddeeffgg" I want to retreive the "ee" or the "cc" value from that string. How can I do that ? The tokenizer is not what I am looking for. I'm looking for the function that allows you to specify that …

Member Avatar for Parsu7
0
222
Member Avatar for Parsu7
Member Avatar for piers

[QUOTE=piers;538630]I have to do a really strange thing. I have to take a string of 2 words and then separate it and put it into two other strings eg String name = "fred blogs"; move the part of the string name which says fred to the String firstname so it …

Member Avatar for Parsu7
0
173
Member Avatar for Danii

The End.