| Thread | Last Post | Replies |
|
| From where i get a best tuts on java | 16 Mar 2007 00:06 GMT | 4 |
I want to learn java, can any one pls let me know or can send the tuts on java
|
| Array of Exceptions | 16 Mar 2007 00:02 GMT | 11 |
Is is possble to create an array of exceptions. Something like this: public Object [] x = new Object [10]; Exception [] x = new Exception [10];
|
| Which would be the most-used java compiler in the industry? | 15 Mar 2007 23:36 GMT | 9 |
Would it be fair to say that it is javac?
|
| Compile of Read Only Java Elements | 15 Mar 2007 20:49 GMT | 1 |
We are software configuration management team preparing to participate in a new project where we will be compiling Java source code. Will the team need to have anything other than "read only rights" to compile Java source code so that the output (i.e. an ear file) can be sent our
|
| Write Great Computer Program | 15 Mar 2007 19:59 GMT | 4 |
Our 90 % percent work based on our mind. all the successful person of this world won from mind. You can be Albert Eynsteen, Pablo Picso, Henri Ford . your have the same power they were had, you can awake to your mind through meditation.
|
| Discovering subclasses or implementations of an interface | 15 Mar 2007 19:42 GMT | 2 |
We've got an app that has connectors to external systems. We allow our customers to subclass our main Connector class to implement their own connector. If a customer puts a Connector implementation on the classpath, is it possible for our app to discover it automatically?
|
| Starting an mac application | 15 Mar 2007 19:41 GMT | 3 |
I have got some Mac Application that I want to start with some parameters ... ProcessBuilder pb = new ProcessBuilder(tooFreeApp.getPath(),"-data",myRootPath.getPath(),apparguments);
|
| Question on regular expression. | 15 Mar 2007 19:08 GMT | 6 |
Here is a pattern and the code snippet I have: String pat = "#foo#([+-][0-9]+)*"; String input = "#foo#+1-2"; Pattern pattern = Pattern.compile(pat);
|
| Velocity ... Servlets ... I'm stumped | 15 Mar 2007 18:42 GMT | 4 |
I'm trying to create a dynamic webpage that will simply allow a user to enter their name, and the system will say back "hello $name". Can anyone please help me with the most basic of instructions on how to create the velocity templates, servlets and how to use/implement them
|
| International i18n character problems | 15 Mar 2007 18:38 GMT | 4 |
I have text entered in a web page which is posted as this: This is my test! à, è, ì, ò, ù - À, È, Ì, Ò, Ù директора Хьюман Райтс Вотч Кеннета Росса
|
| How to Know Whether a File is "Complete"? | 15 Mar 2007 18:03 GMT | 3 |
i have an application that periodically checks a directory for the existence of some files, then move them somewhere. Those files are copied there locally, or uploaded from a remote client. My question is, how can i know if a file is still in the midst of
|
| priority scheduler | 15 Mar 2007 17:06 GMT | 2 |
I hope this is the right place to post this....... any way I am supposed to write a priority scheduler in java but I have a problem in selecting the next thread to resume according to its priority (note: my programs priorities are diffrent from
|
| mixed type collections | 15 Mar 2007 16:36 GMT | 3 |
In Java can you mix types in collections or arrays like in Python and Ruby? (eg like the Python and Ruby examples here...)
># Python |
| Looking for a program similar to "strip" | 15 Mar 2007 16:33 GMT | 3 |
There is a Unix program called strip which removes debugging info and other stuff from executables to make them smaller. I wonder if there is a similar program for Java jars or class files. Thanks for any light you can shed on this question.
|
| Combinations Help | 15 Mar 2007 15:48 GMT | 3 |
Does anyone have any idea how I could find all possible n-combinations of an array {1,2,3,4,5,6,7,8,9} (where 1≤n≤9), add up these combinations and output them in an array? I realise this array would be pretty big, and I'm not sure if the
|