| Thread | Last Post | Replies |
|
| Sorting? | 19 Apr 2005 01:17 GMT | 10 |
What would be the best way to sort a table of strings stored in a array list. For example: Col1 Col2 Col3 Col4 item item item item
|
| HashMap cloning? | 19 Apr 2005 00:53 GMT | 7 |
I want to clone a HashMap. HashMap includes a clone method. Great. But according to the Java docs: clone() Returns a shallow copy of this HashMap instance: the keys and
|
| javax.comm - SerialPort Prolem | 19 Apr 2005 00:41 GMT | 4 |
I tried to install the comm-extensions (with Java 1.5) and copied my files: win32com.dll -> \myjdk\jre\bin javax.comm.properties -> \myjdk\jre\lib comm.jar -> \myjdk\jre\lib\ext
|
| Writing to a file from an EJB | 18 Apr 2005 21:28 GMT | 8 |
I am trying to write to a file using an EJB. I need to put the file on the server for an FTP process. Does anyone have some example code that will do that? Here is what I have so far, but I am having trouble... public int writeToFile(String aosData) {
|
| ComboBox NullPointerException | 18 Apr 2005 21:01 GMT | 3 |
Hi All; I'm having problems seting up a new Combo box model. My Box Model... stateBoxModel = new DefaultComboBoxModel(new String[]{state1,state2}); int size;
|
| compiling a servlet | 18 Apr 2005 20:32 GMT | 4 |
I just installed Tomcat, and I'm trying to recompile the examples that come with it. I get the following error: HelloWorldExample.java:23: package javax.servlet does not exist import javax.servlet.*;
|
| Tomcat: Place my classes somewhere other than inside WEB-INF? | 18 Apr 2005 20:09 GMT | 1 |
i'm trying to let tomcat pull some classes in from a dir outside of WEB-INF. i've read something about setting CLASSPATH, but that doesn't quite work. is there a way to do this (modify the startup script)? thanks,
|
| Storing a dynamically created PDF file in memory and storing it to a blob field in a database | 18 Apr 2005 19:19 GMT | 3 |
I have dynamically created a PDF document in memory as a FileOutputStream Now I have to get it into a DB2 table, storing it as a BLOB. The table has a document id, document name, some date fields and this BLOB column that stores PDF Files.
|
| Where download download java.awt.robot class | 18 Apr 2005 18:01 GMT | 5 |
I'm using Visual Age For Java environment. I need to import java.awt.robot class because there is not in this environment. Is there any way to do this. Rafal
|
| Producing an HTML using XSL file from Java Servlet | 18 Apr 2005 17:14 GMT | 2 |
I want to write a java servlet to produce an html file. Instead of writing an html file directly, I want to write a xml file describing the html file, then process it using an xsl file. Here is the main part:
|
| XDOClet with JSP & JSF | 18 Apr 2005 16:01 GMT | 1 |
I wonder where to put XDoclet tags in web-application (for instance to specify references to EJB). We use JSP & JSF without writing any non-default servlets. Is there any way to put the tags in JSP code? And if not then where is the appropriate place for it?
|
| Java compilation error: "cannot resolve symbol" | 18 Apr 2005 15:34 GMT | 2 |
I have a simple test package that I am using to learn Java. I have two files, both of which belong to the same package (mypackage). One of the files uses a class defined in the other file. Both files are in the same directory c:\temp\test\mypackage
|
| USERNAME and PASSWD not accepted by TOMCAT | 18 Apr 2005 14:46 GMT | 7 |
I am suing TOMCAT 4.1.31 ... but when i log into the admin page , it asks for the username and the password , which i give as TOMCAT and the password as TOMCAT ( these are the combintions with TOMCAT manual refers ) ..
|
| InvalidClassException COM.rsa.jsafe.SunJSSE_dr | 18 Apr 2005 13:54 GMT | 11 |
With this source code: FileInputStream istream = new FileInputStream(fullPathFile); ObjectInputStream oistream = new ObjectInputStream(istream); Object o = oistream.readObject();
|
| Using Real Player to play an RTSP URL from an applet | 18 Apr 2005 13:47 GMT | 5 |
I have an applet that I'd like to have play an RTSP URL with Real Player when I click on a button. I can use showDocument for http URLs, but it doesn't work for RTSP. I get a malformedURL exception. Does anyone know how to construct a java.net.URL with rtsp as the protocol
|