| Thread | Last Post | Replies |
|
| Client blocks! | 18 Sep 2006 23:39 GMT | 2 |
I have this simple client/server application, but for some reason the client blocks after typing the first input (of course the server is running an the client is connected): import java.io.*;
|
| static and non static | 18 Sep 2006 22:52 GMT | 1 |
i am trying to implement interface, and static method cannot be called in non static method. So my one class is public static void main and other is non-static. Test file -----------------
|
| java.lang.UnsatisfiedLinkError | 18 Sep 2006 21:30 GMT | 2 |
i am using some classes which were written to be executed by a web service and am trying to use them in a test application which will use a simple main method. the class am trying to use has a
|
| application security roles | 18 Sep 2006 21:16 GMT | 2 |
Hie. Guys, how do i get an enumeration of all the roles defined in a java application programmatically? am using Websphere appliaction server V6 as my application development platform.
|
| What is your favourite 'programming music'? (non-technical question) | 18 Sep 2006 21:13 GMT | 13 |
When you are programming, what kind of music or which song you love to hear? Is it classic music, piano, or pop music? Is it by male singer or by female singer? I think sometime hearing music would be helpful in our productivity, right?
|
| Generating binomial values | 18 Sep 2006 20:48 GMT | 6 |
I'm looking for an algorithm for generating discrete random numbers with a binomial distribution using a uniform RNG. Basically something like the Box-Muller algorithm but for binomials. I know I can use a normal distribution (and hence Box-Muller) as an approximation, I was ...
|
| Information about jsf.. | 18 Sep 2006 18:25 GMT | 2 |
i've developed a jsf application but now i need to care to its aspect... that is change style of page,organizing input forms etc.... Does exists for jsf page templates?
|
| Compressing Animated GIF | 18 Sep 2006 14:51 GMT | 5 |
Is there any java libraries around on the net that enables me to compress animated gif into a smaller file size? Appreciate any advice.
|
| load servlet mappings at runtime in tomcat | 18 Sep 2006 14:40 GMT | 1 |
Can anyone suggest a way to achieve dynamic servlet mappings in tomcat 5.5. What I want to do is run a web app with any number of paths all pointing to one servlet. These paths would be loaded from a database and extra paths can be added at runtime by the user. So an example ...
|
| Mysteriously appearing Timer thread does not allow JVM to die | 18 Sep 2006 14:37 GMT | 1 |
In my application, a "Timer-1" thread seems to appear out of nowhere and it does not let the application to shut down. This thread belongs to a ThreadGroup that I create within the application and it starts while another thread of the same ThreadGroup is executing. I am able to
|
| java runtime.exec, is this possible? | 18 Sep 2006 14:24 GMT | 3 |
I would like my java app to launch an external program. The external program is the Windows Command Processor (cmd.exe). I would like my java app to launch it as it's own separate process. So I would like a new window to appear, with the prompt showing. I can't
|
| Static Versus Non Static | 18 Sep 2006 12:29 GMT | 9 |
Today I was part of a fruitful discussion. But that left me in mere oblivion. A static method cannot access non static members of the class. Well, thats fine and clear.
|
| How to make Compilation faster | 18 Sep 2006 11:23 GMT | 7 |
I was using C/C++ and make files for many years (2 decades). It was possible to compile large project with many source-files very quickly, because only the updated file needed to be compiled and the rest only linked.
|
| Can a method be a parameter of another method in Java? | 18 Sep 2006 08:31 GMT | 19 |
In a precedual language world, a method can take a parameter which is a method by itself. For example, <psudo-code> sum_from_a_to_b(myFunc, a, b); //a is 1, b is 5
|
| Java-Application to front | 18 Sep 2006 08:15 GMT | 2 |
How can I programatically take my java-application under MacOSX to front? I have a JFrame and I think I tested all kinds of methods to do this: "toFront, setVisible, invalidate, validate, setenable, etc."
|