| Thread | Last Post | Replies |
|
| what am i doing wrong here? | 05 Jun 2005 13:30 GMT | 12 |
I've written a Java method that uses a list to return 5 three-dimensional arrays containing 'Big Decimal' entries. However I also want to return a single boolean type variable, but cant seem to get the program to do this. My method basically goes :-
|
| Courtesy and manners on c.l.j.programmer | 05 Jun 2005 11:10 GMT | 2 |
Quoted from another thread on c.l.j.programmer (A.T.) Might I suggest that anyone who has a further interest in pursuing the level of niceness that should be displayed on this group, take
|
| StringTokenizer functionality in split | 05 Jun 2005 09:53 GMT | 3 |
First of all, sorry if that's a stupid question but I'm a newbie with Java. I'm writing a parser that needs the functionality of the "StringTokenizer" method. That is, I want a method that not only
|
| JNI question | 05 Jun 2005 09:03 GMT | 1 |
I have the following error when my JNI class tries to load the shared library: Exception in thread "main" java.lang.UnsatisfiedLinkError: /XXXXX.so: ld.so.1: /software/javajdk-1.5/bin/sparcv9/java: fatal: /XXXXX.so: wrong ELF
|
| Build tools: dependency checking, Ant and Javamake | 05 Jun 2005 06:01 GMT | 3 |
Can anybody name the best dependency checkers for rebuilding Java files? Some time ago, it was said, Ant had only decent dependency checking. A "plugin" adapter class called Javamake http://www.experimentalstuff.com/Technologies/JavaMake/index.html
|
| Matrix Wanted | 05 Jun 2005 03:23 GMT | 36 |
I want to transform the unit square (0,0),(0,1),(1,1),(1,0) to some parallelogram in 2-d space using java.awt.geom.AffineTransform . What translate-, scale-, shear- and/or rotate-operations do I need to combine and in what order?
|
| Monitoring threads in Java. | 04 Jun 2005 19:35 GMT | 5 |
All, Is there a program/utility/class lib (pref gpl) that allows a user to monitor the threads (like the one in Eclipse, but stand alone)? The reason I ask is because I have an applet that has athread issue and
|
| NetBeans 4.1 and cable based Internet link | 04 Jun 2005 17:08 GMT | 2 |
I have installed NetBeans 4.1 (bubdled togeather with Sun's application server) on my home desktop (3.3 Ghz, 1Mb ram) Since I work on some projects both from home and from my office, I have them stored on remote drives Samba drives on a linux box, and try to
|
| Jar Signing | 04 Jun 2005 17:01 GMT | 4 |
I'm testing code for a friend and am running into several issues. Any help would be greatly appreciated (I have gMail invites to offer if that would help). OK, here's the deal:
|
| accessor for composition | 04 Jun 2005 15:37 GMT | 3 |
If I use composition should there be a getComponent() method to get the component? e.g jPanel.add(someClass.getComponent());
|
| Default web root and jsp compile error with Tomcat 5.5 | 04 Jun 2005 10:49 GMT | 4 |
I have just installed Jakarta Apache Tomcat 5.5 (jakarta.apache.org/tomcat), and I am having troubles with the jsp-files. Apparently, the jsp-compiler does not like when I write things like: Vector<String> myStringVector;
|
| For-each or recursion in XSLT | 04 Jun 2005 03:03 GMT | 1 |
I am new to XSLT, modifying somebody else's code: I have the following data (leaves in parallel branches): mystruct/myarray1[i]/myvar/var2 and mystruct/myarray2[i]/myvar/var3
|
| Utility to test IDEA encryption algorithm | 03 Jun 2005 21:13 GMT | 4 |
I have written a program in Java to encrypt text using IDEA algorithm (http://www.finecrypt.net/idea.html) I need a utility to test my program. Is there any IDEA encryption tool that will let me encrypt some text so that I can compare its output
|
| Basic SocketServer & Thread Question | 03 Jun 2005 18:01 GMT | 4 |
How could I have a SocketServer accept connections from a handful of known IP addresses, when the connections come and go in random order? Right now I have one instance of ServerSocket accepting connections from all client IP addresses:
|
| BufferedImage | 03 Jun 2005 17:23 GMT | 8 |
I try to load an image into a BufferdImage instance in the constructor of my class. It does not work. However, if I load the image in the paint() method, all goes well. How can I fix this? The code below should compile readily and illustrate the problem. The file
|