Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
68% Quality Score
Upvotes Received
4
Posts with Upvotes
3
Upvoting Members
4
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
2
2 Commented Posts
0 Endorsements
Ranked #2K
~16.7K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

14 Posted Topics

Member Avatar for javinpaul

Just wondering is there any way to modify Classpath in your program and force them to include a new directory in classpath ??

Member Avatar for JeffGrigg
0
238
Member Avatar for sarathsshanker
Member Avatar for by_stander
Member Avatar for by_stander
0
7K
Member Avatar for cazaletm
Member Avatar for jwenting
0
6K
Member Avatar for bhawna_5nov
Member Avatar for javinpaul
0
290
Member Avatar for fugmag

Hi, It seems that final query string which you are passing to mysql is not correctly formatted. [CODE] 1. String todo = ("SELECT * FROM Emp WHERE Name = '"+text1+"')")[/CODE] I see a closing bracket there ")" try removing that. Also is better to output your final "todo" String before …

Member Avatar for masijade
0
225
Member Avatar for sj5536

[QUOTE=sj5536;1457874]hi i want read text file and write in such way that each word in the separated by 2Spaces if they are separated by more than 2Spaces keep those 2space as it is and filled remaining space with xxxxxxxx plz suggest to how go to this problem and give some …

Member Avatar for javinpaul
0
136
Member Avatar for javinpaul

Hi Guys, I am a relative new member in this forum , My name is Javin Paul and I am Java programmer. I have question related to garbage collection in Java Does garbage collection occurs in PERM Area of Java Heap ? As per my knowledge PERM area is used …

Member Avatar for javinpaul
2
163
Member Avatar for Juvie
Member Avatar for HDRG

Just to add , how to read Exception stack trace to figure out what is wrong and where is wrong Exception in thread "main" java.lang.NullPointerException at java.awt.Container.addImpl<Container.java:1041> at java.awt.Container.add<Container.java:365> at OptionWindow.<init><OptionWindow.java:63> at OptionWindow.main<OptionWindow.java:182> 1) first useful information is Exception is in your "main" thread. 2) second useful informaiton is its …

Member Avatar for HDRG
0
200
Member Avatar for RossR

You can also use [CODE]Byte.parseByte("0xFF")[/CODE] method to parse String into Byte , I generally use this way to convert string into any other data type e.g. from String to Integer [CODE]Integer.parseInt("123")[/CODE]

Member Avatar for javinpaul
0
244
Member Avatar for sariberri

Hi, NoSuchElement is thrown by the nextElement() method of an Enumeration to indicate that there are no more elements in the enumeration, so before calling this method you should try to check if there is any element remaining , you can use method hasMoreElements() to check that. Also on a …

Member Avatar for sariberri
0
167
Member Avatar for makeUbleed

Use currentNumber = //your current Number result = resutlt + currentNumber; while ending you can print result.

Member Avatar for javinpaul
0
193
Member Avatar for hanvyj

you should put Nest.this like below myOtherClass = new MyOtherClass(Nest.this);

Member Avatar for hanvyj
0
104

The End.