| Thread | Last Post | Replies |
|
| Chainsaw log viewer | 17 Jun 2005 03:39 GMT | 1 |
I am trying to get the source code for chainsaw and trying to make some minor modifications. However, I am not able to proceed becase some files are missing. I downloaded the binaries and source code from
|
| Help with searching numbers | 17 Jun 2005 00:46 GMT | 3 |
i have a problem, i have to a string of characters starting with numbers, i have to search for this no and whenever a no is encountered put a newline before it so tht all the strings starting with no r on a new line. plz help for this code
|
| a logging/trace lib for java | 17 Jun 2005 00:19 GMT | 8 |
I was wondering if anyone had or knew of a basic java class/lib to do tracing/logging of a java program. All I'm looking to do is have a utility class I guess to replace plain old System.out.println()(save to a file probably instead) calls in the code. To be able to turn it on ...
|
| COM objects in Java | 16 Jun 2005 22:22 GMT | 8 |
I didn't find much information about building COM objects in Java. I just found few links talking about the MS javareg utility. Am I missing something obvious like "COM objects are contrary to the Java philosophy" or "Java does it differently and call it X"? It could be
|
| Thread.setPriority outside of run method | 16 Jun 2005 21:31 GMT | 3 |
If I call setPriority in the constructor of a class that extends Thread isn't that going to set the priority of the main thread, since the new thread has not started? I can't find this in the javadocs.
|
| java 3d picking | 16 Jun 2005 20:23 GMT | 10 |
I have a very simple 3D-app with a couple of cubes in the scene which I want to pick. I dont want to rotate, translate or scale them, I just want to pick one of them and know which one was picked. (It's for a battleship-like game, just want to choose a cube to know at which one ...
|
| problems with character streams | 16 Jun 2005 20:04 GMT | 2 |
maybe someone here can give me hint. My input is a string that contains sequences like ...=?ISO-8859-1?Q?blabla?=.... Is there a class that translates this to something useful?
|
| Future.cancel() | 16 Jun 2005 19:28 GMT | 2 |
I was wondering if this method, as implemented by e.g. the FutureTask class, allows me to terminate a thread? I created an ExecutorService and submit()-ed a Future object, which I initialized with another object implementing runnable. The thread is
|
| Is 'if' standardized? | 16 Jun 2005 17:49 GMT | 4 |
Will an if-statement always break at the first occurence of a 'true' in a chained or-statement? Like this if( myArray == null || myArray.length() == 0 )
|
| Cruel intentions | 16 Jun 2005 16:53 GMT | 10 |
I am just starting to develop GUIs in java and have been reading "Big Java" by Cay Horsmann. I believe it to be quite a simple book but this is exactly what I need right now. One thing he suggests when it comes to event handlers is to define a separate (inner) class for them. And
|
| non-Struts JSP input validation framework? | 16 Jun 2005 16:09 GMT | 1 |
I'm working on an old Java application that is being converted to JSP with Hibernate. The conversion is taking place piece by piece and using Struts or Spring is not an option. Can someone recommend an existing set of classes that allows you validate user input on the server side,
|
| hide the input box or change the color of input box in html | 16 Jun 2005 15:22 GMT | 3 |
i want to hide the input box or change the color of input box in html so that it can't be visible . please tell me how?
|
| Problem with Runtime.getRuntime().exec() | 16 Jun 2005 15:22 GMT | 1 |
I have faced a certain problem while writing the following code to run a shell command through a Java Program.... The code is... { public static void termFrequencyVector() throws IOException
|
| Axis Client FROM nusoap php server | 16 Jun 2005 15:18 GMT | 1 |
I'm having some with this response from a php-nusoap server. <?xml version="1.0"?> <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
| Variable entries in property file | 16 Jun 2005 14:34 GMT | 3 |
Variable entries in property file I was wondering is there a good way to setup and read in variable entries in a property file? I wasn’t to have from 1-many Ip/port value pairs but won’t know in the program how many their might be
|