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
~1K People Reached

8 Posted Topics

Member Avatar for arka.sharma

Hi, I am able to browse internet after I set my proxy ip and port from "settings -> wireless network -> Mobile network -> Access Point name -> Telkila -> proxy ".But instead of setting proxy here if I try to insert a row having "values(99,'http_proxy','10.203.227.227:80') " as suggested "http://www.anddev.org/emulator__internet_behind_proxy-t130.html" …

Member Avatar for seonetsmartz
0
192
Member Avatar for arka.sharma

I have written this following code to check the garbage collection and expecting that garbage collection will not occur since I'm maintaining the reference of objects. [code]import java.util.ArrayList; public class HeapConsumer { public static void main(String args[]) { ArrayList<Integer> list = new ArrayList<Integer>(); int i = 0; while(true) { list.add(new …

Member Avatar for JamesCherrill
0
125
Member Avatar for arka.sharma

Hi All, I am new to EJB and JBoss.I am trying to develop a very simple EJB 3.0 stateless calculator bean which I have done upto this.I have one remote interface "Calculator.java" a stateless bean class "CalculatorBean.java".I have successfully compiled these and packaged in a jar file and kept it …

0
60
Member Avatar for aiwasen

[CODE]int sort() { if(length == 0) { System.out.print("List is empty,Please insert items first"); return FAILURE; } Node curr = head; Node nextCurr = curr.next; for(int i=1;i<=length-1;i++) { for(int j=0;j<length-i;j++) { if(curr.data > nextCurr.data) { int temp = curr.data; curr.data = nextCurr.data; nextCurr.data = temp; } if(curr.next!=null) curr = curr.next; if(nextCurr.next …

Member Avatar for aiwasen
0
165
Member Avatar for larrymtl

One thing that I think important is that you have written the entire code inside main.You should take a separate class and method for doing this. Another point is that when a user enters negative size you are doing the checking for once but the user can enter negative size …

Member Avatar for larrymtl
0
212
Member Avatar for arka.sharma

Hi All, I'm trying to compile an xsd schema using xjc compiler following the command java -jar jaxb-xjc.jar <schema file>.I've set the classpath of these following jar files jaxb-api.jar jaxb-impl.jar jaxb1-impl.jar jaxb-xjc.jar sjsxp.jar jsr173_api.jar activation.jar resolver.jar. It is showing IllegalArgumentException

Member Avatar for stultuske
0
198
Member Avatar for arka.sharma

Hi All, I am trying to write a program that will take a straight line,circle,square or some regular geometric shape as an image.And tell which geometric figure it is.Anybody give me some idea where to start. Thanks and Regards Arka

Member Avatar for JamesCherrill
0
134
Member Avatar for arka.sharma

Hi, Can anyone tell me that given a set of co-ordinates but not the centre and program will test whether these points are on the locus of some circle. Regards Arka

Member Avatar for JamesCherrill
0
71

The End.