| Thread | Last Post | Replies |
|
| ISP supporting servlets | 03 Oct 2006 08:18 GMT | 2 |
Can anyone recommend an ISP that supports servlets? Roohbir
|
| swing jlist, how to print out once instread of twice when selection changed | 03 Oct 2006 08:02 GMT | 3 |
I got two questions for the following codes import javax.swing.*; import java.awt.*; import java.awt.event.*;
|
| Bitwise (flags) enums: how to compare? | 03 Oct 2006 07:24 GMT | 6 |
I tried hard to find on google some reference about bitwise (flags) native enums in Java 1.5, without success. What's the proper way to define and compare bitwise enums (see below)? Thank you!
|
| String problem | 03 Oct 2006 06:59 GMT | 8 |
//--------- part -1-------------- if("String".toString() == "String") System.out.println("Equal"); // prints else
|
| Java 1.4 memory model and hyper threading | 03 Oct 2006 03:01 GMT | 2 |
Are there any documented problems with running a J2EE application on a 1.4 JVM on a machine with hyper threading enabled? Specifically, can the broken memory model cause problems in a such environment? Br,
|
| package rename (refactoring ) from command line | 03 Oct 2006 02:59 GMT | 1 |
Is there a tool that can rename packages which can be run from a command line? I'd like to do the refactoring on the fly as part of the build process - something like what most obfuscators do. However I need to rename
|
| servlet | 02 Oct 2006 22:53 GMT | 6 |
I have an html file that uses Ajax. The back end is a Servlet file. Just wanted to know how I can upload the servlet to my website. I have an account with 1and1. I want the servlet there. So what process should I follow to do that.
|
| Client/Server Socket problem | 02 Oct 2006 22:42 GMT | 5 |
Hi, I have am trying to write a simple client/server, where the client reads in a line of text and sends it to the server. the server capitalizes the text and sends it back...but the server is never finishing reading from the client socket input stream...any ideas?
|
| Redirecting System.out to java.util.logging | 02 Oct 2006 21:41 GMT | 3 |
Hi, I am using the Java logging and some components that I am using write to System.out/System.err. Is there any way to redirect them to the java.util.logging.Logger? Thanks, brian
|
| Design Patterns: Factories VS Abstract Factories | 02 Oct 2006 21:35 GMT | 1 |
What is the difference between Factories and Abstract Factories? Is the Abstract Factory just the defined Abstract Class with its Abstract Methods?
|
| URL in Java | 02 Oct 2006 21:21 GMT | 1 |
I am trying to get the url with following using Java. I need to change the user agent but I can not figure out how. Can you help me? URL url = new URL(url); BufferedReader in = new BufferedReader(new
|
| how do I move java ME app to phone | 02 Oct 2006 20:15 GMT | 12 |
I got NetBeans with ME plugin. Compiled and ran app in emulator. How do I move app to phone? I have a USB cable to phone. The particular phone is Motorola RAZR. Cheers.
|
| Howto get the Computer's serial number | 02 Oct 2006 17:39 GMT | 1 |
I need to find the computer's serial number (serial number of the builder .. ex Dell). Is it possible to get it with a java application? Thanks for any suggestion!
|
| How to use Findbugs 1.1 (as compared to say .95) | 02 Oct 2006 17:21 GMT | 2 |
I've used FindBugs .95 for several months and have been very pleased. Never neededing to read documentation and being able to get a usable report within minutes of download was a good thing. I've downloaded 1.1 and 1.1.1, read documentation and still cannot get
|
| Generics and use of extends in HashMap | 02 Oct 2006 16:20 GMT | 5 |
First the code: public interface A { } public class B implements A {
|