active questions tagged jpda - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T02:36:55Zhttp://stackoverflow.com/feeds/tag/jpdahttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1265732/how-to-connect-adobe-air-client-side-with-java-vm-debug-interface0How to connect Adobe Air client side with Java VM Debug Interface?Roman Kagan2009-08-12T11:58:59Z2009-08-12T12:17:40Z
<p>Hello:</p>
<p>I'd like to know if/how would it be possible to connect Adobe Air application to Java VM Debug Interface? I have some objects residing on server side and don't want to change the code there and server already allows to do remote debugging.</p>
<p>Here's the information about JPDA:
<a href="http://www.j2ee.me/j2se/1.3/docs/guide/jpda/architecture.html" rel="nofollow">http://www.j2ee.me/j2se/1.3/docs/guide/jpda/architecture.html</a></p>
<p>Greatly appreciate for your advice in advance.</p>
http://stackoverflow.com/questions/1077404/learning-to-debug-in-java0Learning to debug in Java.dmindreader2009-07-03T01:01:13Z2009-07-03T09:05:53Z
<p>Hi, I'm both learning to use the JPDA on Netbeans and solving the <a href="http://www.spoj.pl/problems/PRIME1/" rel="nofollow">Prime Generator</a> problem of Sphere's Online Judge. </p>
<p>I've been reading <a href="http://www.netbeans.org/kb/55/using-netbeans/debug.html" rel="nofollow">this tutorial on netbeans.org</a> about he JPDA, but haven't found it of much help. </p>
<p>This code, which is based on a Sieve of Eratostenes implementation provided by starblue <a href="http://stackoverflow.com/questions/1042902/most-elegant-way-to-generate-prime-numbers">here</a>, is running like this:</p>
<pre><code>2
1 10
//here the primes between 1 and 10 should print
3 5
//here the primes between 3 and 5 should print
package sphere;
/**
*
* @author Administrator
*/
//import java.util.ArrayList;
import java.util.BitSet;
import java.lang.Math.*;
import java.util.ArrayList;
public class Main
{
public static int ApproximateNthPrime(int nn)
{
double n = (double)nn;
double p;
if (nn >= 7022)
{
p = n * Math.log(n) + n * (Math.log(Math.log(n)) - 0.9385);
}
else if (nn >= 6)
{
p = n * Math.log(n) + n * Math.log(Math.log(n));
}
else if (nn > 0)
{
p = new int[] { 2, 3, 5, 7, 11 }[nn - 1];
}
else
{
p = 0;
}
return (int)p;
}
// Find all primes up to and including the limit
public static BitSet SieveOfEratosthenes(int limit)
{
final BitSet primes = new BitSet();
primes.set(0,false);
primes.set(1,false);
primes.set(2,limit,true);
for (int i =0; i*i<limit;i++)
{
if (primes.get(i))
{
for (int j=i*1; j<limit;j+=1)
{
primes.clear(j);// hace que el indice j sea false (no primo)
}
}
}
return primes;
}
public static ArrayList<Integer> GeneratePrimesSieveOfEratosthenes(int n)
{
int limit = ApproximateNthPrime(n);
BitSet bits = SieveOfEratosthenes(limit);
ArrayList <Integer> primes = new ArrayList<Integer>();
for (int i = 0, found = 0; i < limit && found < n; i++)
{
if (bits.get(i))
{
primes.add(i);
found++;
}
}
return primes;
}
public static void main (String[] args) throws java.lang.Exception
{
java.io.BufferedReader r = new java.io.BufferedReader (new java.io.InputStreamReader (System.in));
String s;
s= r.readLine();
int test_cases = Integer.parseInt(s);
int case_counter =0;
while (case_counter<test_cases) {
// System.out.println(s);
s = r.readLine();
String [] splitted = s.split(" ");
int lower_bound = Integer.parseInt(splitted[0]);
int upper_bound = Integer.parseInt(splitted[1]);
ArrayList <Integer> primesList= GeneratePrimesSieveOfEratosthenes(upper_bound);
for (int i =0; i<primesList.size();i++){
if (primesList.get(i)<=lower_bound)System.out.println(primesList.get(i));
}
case_counter++;
System.out.println(" "); // space that separates test cases
}
}
}
</code></pre>
<p>I know that the ArrayList primesList isn't getting initialized and I'm suspicious of this bit of code, cause honestly, I don't quite understand it:</p>
<pre><code>if (primes.get(i))
{
for (int j=i*1; j<limit;j+=1)
{
primes.clear(j);
}
}
</code></pre>
<p>It occurred to me to use a conditional breakpoint here with the condition of:</p>
<pre><code>primes.get(j)==false
</code></pre>
<p>But I'm not sure if I'm able to get meaningful info this way. These are the screens I'm getting:</p>
<p><img src="http://img525.imageshack.us/img525/6238/breakpoints.jpg" alt="alt text" /></p>
<p><img src="http://img98.imageshack.us/img98/5262/watchesz.jpg" alt="alt text" /></p>
<p>I don't know ho