| Thread | Last Post | Replies |
|
| JTidy APi, Exception in thread "main" java.lang.NoClassDefFoundError: | 20 Jan 2005 04:18 GMT | 10 |
As I read <http://sourceforge.net/docman/display_doc.php?docid=1298&group_id=13153> it takes three args from the command line: url, output and error. This class has a main method, I don't get the error :(
|
| Help 4 my project work..... | 20 Jan 2005 03:52 GMT | 1 |
1.How to Pass the Parameters(input) from the HTML Form Data's to the Java (Main)Program.
|
| SSL Self-Signed Certificates | 19 Jan 2005 23:58 GMT | 2 |
I have a problem with SSL-Sockets. I try to connect to hosts that use SSL for encryption only, and therefore do not have a valid certificate chain to some root CA. Since i potentially have to deal with a lot of these hosts, having the user import them as CA's is impractical to say ...
|
| Switch statements? | 19 Jan 2005 23:58 GMT | 2 |
In my method VoteTest I would like to have a case that throws an exception with some information to the user if a is a number different from 1 or 2 ( a = = 1 || a = =2). Is that possible? public class VoteTest {
|
| shuffle loses/duplicates objects in LinkedList | 19 Jan 2005 21:49 GMT | 3 |
I'm trying to use the Collections.shuffle() method on a LinkedList. After the shuffle() the LinkedList is totally mangled, with several of the original Objects being replaced by duplicates of others. If I use an ArrayList instead of the LinkedList the behaviour is as expected.
|
| migrating from C++ to JAVA | 19 Jan 2005 19:34 GMT | 5 |
Hi, everyone! I have learned C++ in my college .I have recently joined one of the top IT services company after completingmy college and here I have been allocated project on JAVA. Now I wanted help from all of u in deciding how should I approach studying JAVA as I already know the ...
|
| Primitive int variable with MAX_VALUE | 19 Jan 2005 16:46 GMT | 2 |
How do I create a primitive int variable which holds the largest value it possibly can? I've tried this: public Integer x = Integer.MAX_VALUE; public int y = x.intValue();
|
| Sixlegs and Applets | 19 Jan 2005 10:13 GMT | 13 |
I'm trying to make the sixlegs png library work with an applet (www.sixlegs.com). But it gives me a SecurityException. MyImage class implements this for creating the image: PngImage pngimage = new PngImage("background.png");
|
| like Access (print) Report | 19 Jan 2005 07:35 GMT | 1 |
How is it possible to make a print Report like microsoft Access in java ? Is there any package or api set? Giuseppe Morreale Italy - Sicilia
|
| Java Datatype to store integer more than 100 digits | 19 Jan 2005 04:05 GMT | 1 |
Are there any built in datatypes or classes in java which help us to store and manipulate integers with size as large as 100 digits. Regards Mark
|
| Fast efficient way to test a small number for primality? | 19 Jan 2005 02:13 GMT | 10 |
Hi, I have written a program where a number has to be tested for primality. The number is always smaller then 10^12. Right now I use the sieve of Eratosthenes with this method: public boolean IsPrime(long testPrime)
|
| Help with beginning Java web programming? | 18 Jan 2005 23:06 GMT | 3 |
I'm interested in beginning Java web programming but I'm unsure as to where to start and what I have read has only managed to confuse me. First: What should I learn if I want to develop a Java web application?
|
| "this" statement? | 18 Jan 2005 22:59 GMT | 3 |
The "this" statement that is used in the method "exitRoom" and "explore" is that synonymous with an "Explorer" object? public class Explorer implements PlayerBehavior { private String my_name;
|
| Why can't the debugger find my JDBC Driver. | 18 Jan 2005 22:31 GMT | 4 |
I'm sure this is going to be one of those "can't see the forrest for the trees" questions, but here goes. I have a JDBC program which I am trying to debug in the NetBeans (v3.6) bundled with the j2sdk (v1.4.2_04). My problem is that when I run under the
|
| generics help needed | 18 Jan 2005 20:49 GMT | 2 |
Can someone explain how to get rid of the following warnings? Here is a simple contrived example. The warnings are when I call sort(). Here is the sample code: import java.util.*;
|