| Thread | Last Post | Replies |
|
| The Override Problem | 18 Jul 2005 18:54 GMT | 53 |
I am about the describe one of the most frustrating features of Java -- the total lack of safety nets when it comes to overriding methods. Tracking these down take me days. Any hints on techniques for ensuring the error never happens are
|
| Date intervall parsing | 18 Jul 2005 18:28 GMT | 4 |
does anybody know, where I can find a class converting Strings like 11./12.05.2005 or 13.04.-16.08.2006 into two separate Date objects by given a pattern? Is there an appropriate pattern in SimpleDateFormat?
|
| configuring MS java in ecllipse | 18 Jul 2005 18:11 GMT | 9 |
I am currently working, on MS JAVA and I am using VJ++ IDE for development. Is there anyway to configure ECLLIPSE with MS JAVA. Please tell me if there any other IDE available for god damn thing., thanks
|
| Setting the system time | 18 Jul 2005 17:52 GMT | 4 |
Does anyone know how to set the system time for windows? I tried this command: Process p = Runtime.getRuntime().exec("command /c time 00:00:00"); also tried:
|
| Timed Event in windows file? (batch possibly?) | 18 Jul 2005 17:10 GMT | 1 |
Is it possible to add a timer/timed event in a batch or txt file? for example. I have written a program that sends information to a computerized induction furnace through a rs port. here is what I have in the txt file
|
| Embedding comments in regular expressions? | 18 Jul 2005 16:51 GMT | 3 |
I note the javadoc for java.util.regex.Pattern states Java's regex support doesn't support Perl 5-type embedded comments. Fine. But does it support *any* form of embedded comments? What do you prefer:
|
| Swing plugin for Eclipse | 18 Jul 2005 15:50 GMT | 1 |
What is a good Swing plugin for Eclipse that is open source? I'm looking for a plugin that will aid in the development of GUIs in a drag and drop manner. Thanks for the help!
|
| Array of generic List? | 18 Jul 2005 15:05 GMT | 5 |
I am new to 1.5 and thus generics. I have read the generic tutorial and a decent number of websites/newsgroup posts on the subject. But I still cannot find a satisfactory solution to the following (as of now the best I've got is an unchecked conversion warning)
|
| struts action quiestion | 18 Jul 2005 14:34 GMT | 1 |
I have a short question concerning struts action context stack. I have 3 views. View A, B and C To view C, I can get from view A, or B. In view C I have button "BACK", Whenever I click BACK button, I want to go back to page that called view C
|
| How to know if a file path is relative or absolute | 18 Jul 2005 11:43 GMT | 4 |
i want to test if a file path is relative. Here is code at the moment: public static boolean isPathRelative(File file) { String path = file.toString(); // if linux (root)
|
| How to subclass enum type? | 18 Jul 2005 10:57 GMT | 3 |
Old ways: public class BaseClass { public static final int VALUE_A = 0; }
|
| FIREWALL issue while using RMI protocol in JDMK | 18 Jul 2005 10:03 GMT | 1 |
Our project (JDMK 5.0) constitutes an agent that uses RMI Connector Server and a client that uses RMI Protocol for communication with that agent. When the agent runs on a machine that is behind the firewall, Client is unable to connect to it.
|
| Dynamically loading plugins | 18 Jul 2005 09:49 GMT | 5 |
Here's what I'd like to do: I am creating an application whose functionality will be provided by plugins. These plugins will be Java classes implementing an interface I am creating. One of the methods that must be implemented is called
|
| Cross Platform Comms | 18 Jul 2005 09:30 GMT | 10 |
Can anyone recommened a cross platform comms API ? I need to communicate via an rs232 port in my app, which is meant to run on windows/mac & linux. I know they'll be some complications with the port names but I'm having trouble finding a FREE comms api.
|
| Help with jar files | 18 Jul 2005 07:58 GMT | 3 |
I'm using a library called test.jar My main program is called cut.jar When I create cut.jar, how can I include the library test.jar in it? Thanks
|