44 reputation
5
bio website
location
age
visits member for 1 year, 7 months
seen Apr 17 at 17:14
stats profile views 4

May
24
awarded  Popular Question
Mar
31
asked designer view for new class in google app engine eclipse plugin
Mar
4
awarded  Tumbleweed
Feb
25
asked Assigning my own initComponents() for a NetBeans UI design
Feb
16
awarded  Popular Question
Feb
6
asked Generating UML diagrams using NetBeans 7.2
Jan
19
asked Setting Java path on Windows for Ant
Oct
18
asked java.lang.IllegalArgumentException: already added: Lorg/jbox2d/callbacks/ContactFilter;
Apr
27
asked Subclipse and Eclipse - RA layer request failed
Mar
23
comment Running a script from Java
I'm trying to run a script but assumed I could do the editing of the files from within Java based on the user entered settings from a UI.
Mar
23
comment Running a script from Java
You suggest "you can execute it like any other external program from Java". When running a Linux script on Windows I have to: 1) run cygwin 2) from a cygwin session cd /cygdrive/d/.... to where the script file resides 3) run the script ./script ... I can't see how all of this is run like any other command on Windows; eg: .exec("./script.sh"); Thanks Graham
Mar
23
asked Running a script from Java
Nov
1
awarded  Scholar
Nov
1
accepted C/C++ equivalent to Java's doubleToRawLongBits()
Nov
1
comment C/C++ equivalent to Java's doubleToRawLongBits()
The above doubleToRawBits() using memcpy() gives exactly the same result as Java for the example of 3.94. It's the simplest solution too.
Oct
31
comment C/C++ equivalent to Java's doubleToRawLongBits()
And to generate a long from the const unsigned char * buf?
Oct
31
comment C/C++ equivalent to Java's doubleToRawLongBits()
Yes, for instance the hashCode() for a Point3D object can be written in Java; which in fact is easily auto-generated using NetBeans:public int hashCode() { int hash = 3; hash = 59 * hash + (int) (Double.doubleToLongBits(this.mx) ^ (Double.doubleToLongBits(this.mx) >>> 32)); hash = 59 * hash + (int) (Double.doubleToLongBits(this.my) ^ (Double.doubleToLongBits(this.my) >>> 32)); hash = 59 * hash + (int) (Double.doubleToLongBits(this.mz) ^ (Double.doubleToLongBits(this.mz) >>> 32)); return hash; }
Oct
31
awarded  Student
Oct
31
asked C/C++ equivalent to Java's doubleToRawLongBits()