| Thread | Last Post | Replies |
|
| Where to find package javax.servlet.jsp.* | 01 Jul 2005 17:18 GMT | 4 |
Can someone on this group tell me where I find the package javax.servlet.jsp.* (in particular the tag libraries and classes like javax.servlet.jsp.tagext.TagSupport)
|
| Struts question <html:text> | 01 Jul 2005 17:12 GMT | 5 |
http://struts.apache.org/faqs/actionForm.html How can I make <html:text property="username" size="16"/> display the entry a person put in on error, but another when the property is null or ""? I am tring to make the user login filled in by a cookie, but still keep the
|
| Call A Method From Within Inner Class | 01 Jul 2005 17:03 GMT | 1 |
From within an inner class I call a method in the enclosing class with the same name but WITH A DIFFERENT SIGNATURE. The compiler (jikes) complains: Found 1 semantic error compiling "./Mouse.java":
|
| accessor for variables in AbstractAction subclass | 01 Jul 2005 16:15 GMT | 2 |
Is it bad design to have get/set in a AbstractAction subclass? Or should there only be the actionPerformed method?
|
| dinamic classloader? | 01 Jul 2005 16:13 GMT | 3 |
My program needs to create a class, see code below to understand ;-) /** * Loads system's class and execute it */
|
| How do I use the Java API in a Thread-Safe Manner? | 01 Jul 2005 15:13 GMT | 50 |
I am writing a Java servlet and am new to coding for thread synchronization. I suspect that there must be an "obvious" solution to the following problem but after sevearl days of research I can't find it! It is my understanding that, in general, the J2SE 1.4 API is *not*
|
| Sort map by value | 01 Jul 2005 14:55 GMT | 2 |
Wich is the standard way to sort a map by value in Java? I have a map containing the word frequency of a text and I would like to print the word list sorted by the frequency. Thanks, G.
|
| servlet exception | 01 Jul 2005 13:54 GMT | 5 |
I am getting following exception, could any one tell me assist me in solving the problem. ApplicationDispatcher[/Webstore]: Servlet.service() for servlet batchcategorydisplay threw exception
|
| JNI_CreateJavaVM fails in client jvm, if initial/max heap sizes are specified | 01 Jul 2005 11:31 GMT | 3 |
I've a C++ application on Solaris, which uses JNI Invocation APIs to call a Java class. This application loads the client JVM (/Java_Home/jre/lib/sparc/client/libjvm.so) dynamically, call
|
| Socket and checking for valid host/port | 01 Jul 2005 10:27 GMT | 3 |
Are there ways to check if a host is available or not. It seems like Socket doesn't offer this? For example, Socket will fail enventually if the host is not there, but it seems like the time is random or at least based on the operating system?
|
| Html download challenge | 01 Jul 2005 09:37 GMT | 25 |
I've spent days poking around the internet, reading help information, trying to find working source code but no luck so far. My problem, on the surface and to someone who knows what he/she is doing, should be easy to solve.
|
| To class or to method | 01 Jul 2005 08:26 GMT | 4 |
I have a class public class CascadeAction { ... public CascadeAction(JDesktopPane ... ) {
|
| Dumping HashMAp | 01 Jul 2005 05:14 GMT | 5 |
Consider the following snippet to display the contemts of a HashMap in a sequential manner. //temp2 is a hashmap Set set2=temp2.entrySet();
|
| Aliasing a class name? | 01 Jul 2005 02:57 GMT | 8 |
I would like to wrap a class which is contained in a *.jar file (for which I don't have the source) so I can intercept calls to that class. For example, say that the class is named SomeClass, I would like to create my own class something like this:
|
| Bug in JUnit MoneyBag.java example? | 01 Jul 2005 02:02 GMT | 5 |
Hi... Is there supposed to be a bug in the MoneyBag.java code, from the "money" example that comes standard with JUnit? --Jamie. (Celebrating (?) 20 years on Usenet!) andrews .uwo } Merge these two lines to obtain my e-mail address.
|