| Thread | Last Post | Replies |
|
| Tomcat 5.5 Memory Problem | 04 Jul 2007 04:50 GMT | 2 |
I have tasked with allocating 2GB of memory to the Tomcat server, but I can't seem to allocate more than 1.6GB to Tomcat. I am running Tomcat 5.5.12 on a Windows 2003 Stand. Ed, SP1 server with 3.83GB of Memory.
|
| RMI vs. Sockets vs. ? | 04 Jul 2007 04:48 GMT | 7 |
In my graduate class we have to implement a distributed application using Sockets and then again using Remote Method Invocation (RMI). Is one more prevalent than the other in the "real world"? Or is there something else that is used?
|
| What design plattern is needed to solve my problem? | 04 Jul 2007 03:45 GMT | 3 |
Hello, I want to ask... What design plattern is needed to solve my problems below? P1. Input -> ProcessA -> ProcessB -> ProcessC -> Output
|
| Launch a new java app from a java program | 04 Jul 2007 03:12 GMT | 30 |
I want to write a java program A to launch another java app B. I hope I could configure the argument of VM to launch java app B, just like what Eclipse JDT does.(Eclipse is a java program, and it could launch other java apps.) I do not want to create a new thread for java app B. ...
|
| java newbie - basic io question | 04 Jul 2007 03:12 GMT | 5 |
Hello I 'm new to java and I want just to ask about the shortest possible way to read user input from console. I found this : char tmp; Integer liczba = new Integer (0);
|
| How to implement a UML tool in Java? | 04 Jul 2007 02:59 GMT | 3 |
Hi, all! I want to implement a UML tool in Java. Where should I get started? What books should I read? What APIs should I learn and use?
|
| decimal to binary converter - java | 04 Jul 2007 02:42 GMT | 3 |
hi i need a help... i wanna write a java programmee to display the binary number of the entered decimal number. for ex : in t text area u should type a desimal number and press "Convert" button to display its binary in the next txt field
|
| Java: Using Piping or any other methods to use the output from one program as input in another. | 04 Jul 2007 02:06 GMT | 12 |
I have a huge problem finding adequate information online so if you have a solution to these, please please help!!! ( and I would hugely appreciate it if you could be as detailed as possible; I am still a java novice.)
|
| Testing a JVM implementation | 04 Jul 2007 02:00 GMT | 8 |
I've recently developed a simple JVM in C++ as a university assignment; by simple I really do mean simple! There is no support for strings, longs or doubles, multi-dimensional arrays, any Java classes besides output (which is emulated), inheritance or other fancy OO
|
| monitoring a directory | 04 Jul 2007 00:08 GMT | 4 |
hello every1, i would like to monitor a directory, i.e. when it is opeaned, exited, etc. i know i would have to create a thread for it, but can any1 help me how to do it.
|
| Why Java's Time related classes are so confusing and error-prone? | 03 Jul 2007 23:27 GMT | 4 |
I found that Java's time related classes are so hard to use. For example: GregorianCalendar cal = new GregorianCalendar(); cal.setTimeInMillis(0); //set cal at January 1st 00:00:00, 1970 To TRUELY understand the above code and use it correctly, I need to know
|
| StartService in jini 2.1 | 03 Jul 2007 22:23 GMT | 1 |
I want to start web browser & rmid. Jini version 1.1 got StartService tool. Is there any tool for jini 2.1 ? and besides how can I run any of the services above ?
|
| I have something bugs | 03 Jul 2007 22:05 GMT | 9 |
Hello. I have something bugs, i am dummy in java. Source: import java.io.File; import java.io.FilenameFilter;
|
| Generics, damned if you do, damned if you don't | 03 Jul 2007 21:22 GMT | 10 |
Consider this code snippet: // create a new HashMap HashMap<String, Integer> h = new HashMap<String, Integer>(149, .75f); ...
|
| axis web service parameters lose their names. | 03 Jul 2007 20:30 GMT | 1 |
I have written a method that I expose as an axis web service. The parameter names in my java code do not get exported correctly to the wsdl and I don't know why. The java method syntax looks like:
|