| Thread | Last Post | Replies |
|
| generics: is this possible and with what syntax?? | 30 Nov 2005 13:31 GMT | 3 |
I want to use the concrete type of an outer class as the concrete type of an inner class but if I do so, I get a warning ( in Eclipse, for some sample code see below): "The type parameter ConcreteType is hiding the type ConcreteType"
|
| Using PHP language in Java/JSP files. | 30 Nov 2005 13:31 GMT | 7 |
OK...I inherited a Java based app that I assume is coded completely in Java (isn't that what jsp files are?). I needed to make an addition to it, so rather than learning Java (since I'm trying to phase away from it) I am wanting to make additions in php (as I know php, this was the
|
| URLConnection problem | 30 Nov 2005 12:52 GMT | 2 |
Dear Java Programmers, I am just getting crazy with this stuff. I am asking for the length of a URLConnection, but sometimes the given URLOject has no information or the address doesn't exists. URL url = new URL("http://www.alientech.to/pic/exelixis03/Auto-Exelixis_045.JPG");
|
| JVM thread stack (out of memory) | 30 Nov 2005 12:34 GMT | 2 |
I am trying to run 10,000 threads on my machine, and the JVM reported thread stack out of memory. It is obvious that I have created too many threads (well, 2000 threads is fine, but not 10,000). I've tried to increase JVM memory allocation.
|
| JBoss startup problem with login-config.xml | 30 Nov 2005 10:53 GMT | 4 |
I'm using JBoss 4.0.3 SP1 and I get the following error on starting JBoss: 4:46:45,843 WARN [XMLLoginConfigImpl] End loadConfig, failed to load config: file:/D:/jboss-4.0.3SP1/server/default/conf/login-config.xml org.jboss.security.auth.login.ParseException: Encountered ...
|
| Can't find my own exception class via JNI | 30 Nov 2005 08:19 GMT | 3 |
Given: jclass findClassOrDie( JNIEnv *env, char const *name ) { jclass const theClass = env->FindClass( name ); cerr << "FindClass(" << name << ") failed" << endl;
|
| Rethrowing an exception via JNI ? | 30 Nov 2005 07:02 GMT | 1 |
What's the proper way to rethrow an exception in JNI? int result = env->CallIntMethod( obj, methID, arg );
|
| I want to install the j2sdk for linux using blackdown package. | 30 Nov 2005 06:51 GMT | 2 |
I want to make an environment to develop using java, and considered both 'KAFFE' and 'Blackdown' packages. Final goal is what make java applications in embedded linux system, so I tried to install j2sdk using blackdown packages. In my first
|
| Stylesheets and Schema validation in Apache AXIS 1.x | 30 Nov 2005 05:19 GMT | 1 |
It is often written that in document literal style - one has a lot of flexibility and one can do these two things specifically: 1. Validate the SOAP body against a schema 2. Use an XSLT stylesheet to modify the SOAP body XML. ( I have two
|
| JSF Servlet mapping problem | 30 Nov 2005 05:07 GMT | 2 |
I'm new creating JSF application and I have a problem with the servlet mapping. My directory looks something like this /company
|
| formatted printing of text- color | 30 Nov 2005 02:18 GMT | 9 |
I don't know how to use println with diferent color of text from default and to print ascii of card signes, like hearts, spike, etc... like: System.out.println("This text is RED, and this is BLUE") Thnx
|
| HashMap with primitive int key | 30 Nov 2005 00:38 GMT | 11 |
I have a class like this: class CustomerOrder { int globalID; ...
|
| Java Mustang - new type verifer | 30 Nov 2005 00:22 GMT | 1 |
Hey all, This is just out of curiosity having read up a bit on the upcoming new type verifier for Java Mustang. Basically some of the verification will be done at compile time and the
|
| Java PreparedStatements vs ADODB.Command | 30 Nov 2005 00:13 GMT | 5 |
i am a VB programmer currently learning Java. in VB we can create command objects which (i think) are equivalent to the Java Prepared Statement. HOWEVER, i don't need a connection to create or add parameter values to
|
| abstract class and method | 29 Nov 2005 21:52 GMT | 1 |
i have an abstract class with an abstract method [CODE]import java.net.*; import java.io.*; abstract public class Protocol {
|