| Thread | Last Post | Replies |
|
| Class loading and Java Generic | 27 Jan 2006 19:35 GMT | 2 |
I am new to java class loading. In using it, I have two questions based on the following code: Class cc = Class.forName("G2"); G2 g = (G2)cc.newInstance();
|
| Swing Components and application events | 27 Jan 2006 19:08 GMT | 3 |
I'm building an application whose Swing components should change in response to application generated events e.g. someone clicks change font size. This can be done quite easily by registering each component with an EventManager ( my class ). When the application event triggers,
|
| Modeling weird Windows pathnames | 27 Jan 2006 18:44 GMT | 2 |
I'm working on a "tokenized path name" class, which will allow me to manipulate file and directory paths more easily than java.io.File (or java.lang.String). I've currently modeled a path as: * An (optional) "filesystem root",
|
| The program that would'nt Quit | 27 Jan 2006 17:50 GMT | 20 |
I have I think discovered a strange bug in both JDK 1.5 and 1.6. the program ends like this: System.out.println( "done" ); // System.exit( 0 );
|
| JDesktopIcon problems | 27 Jan 2006 17:44 GMT | 6 |
I have a class which extend JInternalFrame. Whenever this class is invoked, it always spits out the following exception, listed below. For the life of me, I cannot track this down. Is anyone aware of what I may be missing here to cause this? Thanks, Ike
|
| Lost in loops | 27 Jan 2006 17:12 GMT | 10 |
I am really stuck with my program that will compare two strings and assign scores between pairs of letters. my sequences are read in ok seq1 = ATCGTCGTA
|
| Using non-integers as an array index | 27 Jan 2006 17:05 GMT | 8 |
Hi there. I have an array of objects that i will be referring to in my program, they are sections of a transport system. In the system I am simulating historically and presently they are labelled alphabetically of the form AAA or CBA. I am simulating a smaller section and will
|
| Old favorite | 27 Jan 2006 16:51 GMT | 7 |
I'm looking at that showcase example of generification (from java.util.Collections): public static <T extends Object & Comparable<? super T>> T min(Collection<? extends T> coll)
|
| jsp: "Please wait ...." | 27 Jan 2006 16:32 GMT | 2 |
I have a Servlet that does an extensive search which may take up to 1-2 minutes to finish. I would like to display a "Please wait ...." page while the search is being performed and before the search results are displayed. How can I do this?
|
| JAI Problem with scale | 27 Jan 2006 16:28 GMT | 5 |
I am a somewhat novice Java programmer and I am brand-new to JAI. I am having trouble scaling an image using JAI. It works, but the image comes out distorted. Below is the function in my code that does the scaling. I know it is the scale function that causes the problem
|
| pop yahoo mail from Java Program | 27 Jan 2006 16:07 GMT | 4 |
Hello Friends, I want to retrieve all yahoo mails using the java program..so if anyone have idea then send me the code.
|
| Why doesn't Tomcat identify itself? | 27 Jan 2006 15:53 GMT | 3 |
Netcraft shows only 423 sites running Apache Tomcat versus 50,502,840 running Apache and 15,208,775 runninig IIS. When I searched my site which runs Tomcat 5 Netcraft was unable to determine the type. Anybody know what is the deal here?
|
| Check if package exists at runtime | 27 Jan 2006 15:36 GMT | 4 |
Is there anyway to check if a package exists at runtime? Class is simple - try{ Class.forName("java.class1.Class12"); }catch(Exception e){}
|
| getMethodName() | 27 Jan 2006 14:55 GMT | 3 |
I have the following code in a subroutine of a class which is intended to give the user (me) some information as to the nature of the error. In addition I want to include in the MessageDialog the name of the method that invoked the error. How do I get hold of the method name
|
| URL.openConnection bug in 1.6?? | 27 Jan 2006 14:08 GMT | 3 |
If a bug report I got is correct, under some conditions JDK 1.6 URL.openConnection returns null without throwing an IOException.
 Signature Canadian Mind Products, Roedy Green.
|