| Thread | Last Post | Replies |
|
| perl to java | 04 Feb 2004 08:11 GMT | 1 |
I am in the process of trying to convert an existing perl program to java. Being a very rusty newbie programmer I've discovered I didn't know what to do with environment variables and taking them into a java program. So what I work in is linux and I set a few environment variable.. ...
|
| java app as windows service | 04 Feb 2004 03:04 GMT | 2 |
I have a program in java that I want to run as a service. Or have an installer install it as a windows service. Any ideas? Oh yeah.... one more thing. This is more of a dos question but I will
|
| In J2EE 1.4, I get "Could not find main class" ....help.. | 03 Feb 2004 23:51 GMT | 1 |
Hi, All. I download "j2eesdk-1_4-dr-windows-eval.exe" from SUN site. I installed it on my WinXP(sp1) machine. And then I clicked "Start->Sun Microsystems->J2EE 1.4 SDK->Start Default
|
| How to call Thread.sleep() or Thread.yield() without enclosing try/catch block ? | 03 Feb 2004 22:41 GMT | 11 |
I read a java programmming book which talks about Thread.sleep() in following way. "the sleep() method can throw a checked InterruptedException, so your're forced to acknowledge the exception with a handle or declare.
|
| Restricting copy, assignment operations for a Java class | 03 Feb 2004 21:59 GMT | 2 |
If a class member is a pointer and if the class does not want to allow copy, assignment operations, the class declaration will look like this in C++: class testClass
|
| jsp question | 03 Feb 2004 20:55 GMT | 1 |
Hi all; I'm new to Servlet and jsp programming and I'm stuck. I'd like to retrieve data from a database and display it in a html table. So I wrote a servlet that gets a result set and puts it into a Vector
|
| Jrockit + RedHat 9 | 03 Feb 2004 19:27 GMT | 4 |
I've been pulling my hair out all day trying to install jrockit onto a redhat 9 box. every bit of advice I've had to find has said that I need to install the binutils but I'm having no success at all and ther definetly on there.
|
| Checking for non-existing methods at compile time | 03 Feb 2004 17:41 GMT | 2 |
I've been developing a Java app in 1.4, but would like to get it to run on 1.3 JVMs. What is the easiest/best way to tell ANT to tell the compiler to complain when it encounters methods that do not exist in 1.3? I tried "target" and "compiler" without much luck. Do I have to
|
| When to catch Exception | 03 Feb 2004 16:03 GMT | 8 |
Sometimes, the Java compiler will complain that I need to catch exception for a method that I use but sometime it doesn't. So, 1) How does the compiler determine if a method needs to catch exception or not? 2) In general, should I always catch exception when in the case when the
|
| What do you need to know before JSP? | 03 Feb 2004 16:00 GMT | 4 |
I want to learn how to program JSP web applications. I've programmed Java applets and C# web applications, so I understand Java syntax and the HTTP request/response model, but what else do I need to know? Are servlets something I should be able to program first? They
|
| Vector containing Vector | 03 Feb 2004 10:35 GMT | 2 |
I have a problem: I have created a Vector, which elements are also of the type of vector. But I can't read the elements of the "inner" Vectors, because java don't wan't to understand, that these are also Vectors, it only knows them as object.
|
| RMI and unknown class | 03 Feb 2004 09:56 GMT | 2 |
There is RMI server RemoteServer with method receive(Agent agent) and there is class HelloAgent class extended from Agent. RemoteServer don't know about class HelloAgent. So when I call remote.receive(new HelloAgent())
|
| Tool to convert html to Pdf format | 03 Feb 2004 07:47 GMT | 8 |
Hi, I am in need of html to pdf conversion tool. I am using Java and i want to integrated html to pdf conversion using java or using Java JNI.
|
| package compile creates nested package folder | 03 Feb 2004 03:22 GMT | 1 |
When compiling package files, I keep on finding that I end up with a package folder within a package folder, i.e. if I have a package called parts, and so I make a folder called parts in the root of the application, then when I compile the packages, I end up with a folder
|
| Why should Runtime.exec() streams be buffered? | 03 Feb 2004 00:34 GMT | 3 |
The API docs for Process.getErrorStream() says "Implementation note: It is a good idea for the input stream to be buffered". What happens if it's not buffered? I've got essentially the following in the setup() method of a junit test
|