| Thread | Last Post | Replies |
|
| Writing my own eventlistener? | 22 Feb 2005 09:07 GMT | 7 |
Short question : I wonder if it is possible to subclass the java.util.EventListener interface and create a customized event listener. This should also involve subclassing java.util.Event. Could someone explain the mechanism to make this work?
|
| Ping (ICMP) in Java over TCP? | 22 Feb 2005 06:31 GMT | 3 |
According to the Java FAQ, ICMP ping is not possible. http://www.ibiblio.org/javafaq/javafaq.html#ping But how does this Java Applet calculate the Round Trip Time? http://www.vonage-forum.com/voip-speed-test/
|
| Large Prime numbers | 22 Feb 2005 05:16 GMT | 1 |
Are there any efficient algorithm for generating Primes with about 50-100 decimal dight? Thanks Steve
|
| Need help on java project pls | 22 Feb 2005 03:23 GMT | 7 |
I'm a total greenhorn in this language and my lecturer threw me an assignment to do recently. It seems like I have to create an interactive Salary Computation program that calculates the gross salary, net salary for a set of employees (a loop is needed for this
|
| sorry - never mind | 21 Feb 2005 22:53 GMT | 1 |
Sorry, Hit "New Post" instead of "Create Mail" My mistake
|
| Adding array to vector question??? | 21 Feb 2005 22:53 GMT | 3 |
I am making a vector of arrays. What I had hoped to do was the following. Given an index and an array, I wanted to add the array to the vector at the specified index.
|
| New laptop - financing available? | 21 Feb 2005 22:05 GMT | 3 |
Al, I have decided that I want to get a laptop of my own - not one purchased by BOL necessarily. The biggest reason I want it is to do work at home and be able to transport
|
| Converting String into char array | 21 Feb 2005 20:24 GMT | 2 |
I want to replace the newline (\n) and the tabulator (\t) character, because the server must receive a text, that doesn't contain this characters. The server reads with BufferedReader.readLine() /this function reads a text,that is terminated by a newline/.
|
| Setting decimal sign ("+" AND "-") in DecimalFormat ? | 21 Feb 2005 20:04 GMT | 2 |
How do I specify that a DecimalFormat should ALWAYS prepend the decimal sign? I thought DecimalFormat("-00000.00"); would be ok, But in that case a negative number will start with a double minus: --0034.56
|
| send SMTP email using socket problem: java.net.ConnectException | 21 Feb 2005 19:35 GMT | 7 |
I want to write the socket program to send SMTP email, without using any JavaMail API. Here's the program, but it turns out it has the following exceptions: I don't know
|
| Logging the Console Output as well as seeing it on console | 21 Feb 2005 16:41 GMT | 1 |
I have a command line java application, which provides me all the output on the console/cmd. However, I want to log the whatever output is coming to a file as well so that I can go back and see the file after some days if I need. So, the output to console as well as to a
|
| simple reference type question | 21 Feb 2005 10:37 GMT | 2 |
a String is a reference type correct? So if I want to compare two strings I have to use string1.equals(string2) correct? If I use the == operator I am actually comparing the address of the data,
|
| Servlet Design | 21 Feb 2005 10:02 GMT | 5 |
Can someone point out a few servlet design patterns and general observations when it comes to such development? I'm familiar with the common one of having a servlet for every webpage, but I'm trying to come up with a way of adding new webpages to an
|
| Simple jar file question | 21 Feb 2005 09:50 GMT | 2 |
This should be easy: I want to create a single jar file with my classes plus those from a 3rd party. The 3rd party classes are already in a jar file of their own. What is the correct way to combine all these into a single jar? How would I
|
| Compiling for earlier versions of JVM | 21 Feb 2005 09:42 GMT | 1 |
Is it possible to compile 1.5.0 sources, but ask the compiler to throw out anything which won't run on anything later than, say, a 1.2.0 JVM? For example, even though generics require the 1.5.0 compiler, they don't need the 1.5.0 JVM, since the compiler generates the appropriate ...
|