| Thread | Last Post | Replies |
|
| Thanks | 16 Dec 2005 09:42 GMT | 1 |
I appreciate the suggestions - I'll look into them - thanks very much chaps
|
| Analyse which classes are used | 16 Dec 2005 09:33 GMT | 5 |
I've inherited a web application which has had a number of developers working on it over the years and has turned into a bit of an ugly brute. As I go through and tidy it up before I start the real work of fixing bugs and adding features, I'm finding that large swathes of code are ...
|
| Applet Problems - Works in appletviewer but not ie | 16 Dec 2005 09:11 GMT | 7 |
I finished the applet and everything works in using the applet viewer. When I open the htm file that opens the java class, everything works until I get to my high scores screen. when I click that button, It reads from a file and sorts out the high scores and then compares to
|
| Applet Shutdown Problem | 16 Dec 2005 09:00 GMT | 8 |
My applet runs in its own window frame after being invoked from a browser. If I close the applet, the windowClosing event is detected as it should be. If I close down the browser instead of the applet, then the applet's windowClosing event is not called even though the applet
|
| RegEx problem | 16 Dec 2005 08:58 GMT | 5 |
I have a very frustrating problem getting Javas regexes to run. I have no idea what I'm doing wrong, since even the most trivial expressions don't find any matches - even when I've tested and verified them in other regex enabled tools like UltraEdit or so.
|
| Java Collection Framework | 16 Dec 2005 08:31 GMT | 2 |
For Collection interface, the declaration of toArray() is: <T> T[] toArray(T[] a); Why do we have <T> at the start of the method declaration? Thanks a lot
|
| Text search with accented characters | 16 Dec 2005 03:34 GMT | 3 |
Does Java have a method to take a string with accented characters and convert it to unaccented characters? I want to search a big string for a test string, ignoring accents on characters. Doing the equivalent ignoring of case is simple:
|
| good IDE for java | 16 Dec 2005 00:00 GMT | 43 |
hi, i'd like to have a good IDE for java, wich support j2ee...but i''d like this IDE not to be written in java! any one can help me?
|
| Java...it's so Nineties! | 15 Dec 2005 22:48 GMT | 14 |
http://yahoo.businessweek.com/technology/content/dec2005/tc20051213_042973.htm "Reports by Evans Data Corp., which does annual surveys of the activities of software developers, show Java use is slipping as LAMP and Microsoft's (MSFT) .NET technology gain traction. In North America ...
|
| can struts read hebrew from property files? | 15 Dec 2005 22:01 GMT | 10 |
hi.. my jsp and property files are encoded in UTF-8: if i use this: <%@ taglib uri="/tags/struts-bean" prefix="bean" %>
|
| Creating a Timeout on a method | 15 Dec 2005 20:36 GMT | 17 |
I call a method is part of an external API. This method has no timeout parameter on it. I need to be able to control the maximum time it can try -- or else it hangs my app.
|
| Type of class contained in an arraylist | 15 Dec 2005 19:35 GMT | 2 |
needs some help.How can i find out what is the type of the object i have stored in a arraylist in generics please advice Chanchal
|
| GNU (or GNL or public domain) Checkers AI | 15 Dec 2005 19:08 GMT | 6 |
Hi, for a christmas present for my grandpa I would like to make him a checkers game. He had a checkers game in Windows 3.1 that was exceptionally simple - he gets confused when something isn't too terribly easy. We've tried to find him new checkers games, but frankly they just ...
|
| is struts still a valid option? | 15 Dec 2005 19:02 GMT | 3 |
hi.. somone has told that struts is no longer a viable option as JSF will take it's place, and any new web application should not use struts.
|
| How to determine the data type of the return object of Map.get() ? | 15 Dec 2005 16:22 GMT | 5 |
I am trying to determine the data type of the return value of HashMap.get(i). Is there some kind of operators or functions to do this? The keys of the hashmap is always Integer and the value object could be either Integer or String.
|