| Thread | Last Post | Replies |
|
| Using Vector in Java 1.5 | 27 Sep 2005 10:31 GMT | 4 |
I have a simple class that basically stores some data in a char[][] plus some extra useful things about it, and in an attempt to pass an arbitrary number of these objects back and forth through method calls I'm storing them all in a Vector. When I compile, javac tells me I
|
| static and threads | 27 Sep 2005 07:14 GMT | 25 |
Anyone know any good articles that talk about static members and threads. I want to know if I declare any members of a class as static, can it be seen in other threads, or how they might be seen across threads, is the vm dependent, or if I shouldn't do this at all ...
|
| XML Parsing Problems with SAX xerces | 27 Sep 2005 06:51 GMT | 3 |
I am trying to parse an XML document that starts with the following tag: <?xml version='1.0' encoding='windows-1252' ?> This is causing an error:: Caused by: org.xml.sax.SAXParseException: The encoding "windows-1252" is not
|
| Java Applet that is capable of displaying a PDF document within a web-browser | 27 Sep 2005 03:16 GMT | 3 |
What I need is a Java Applet that is capable of displaying a PDF document within a web-browser. The applet MUST NOT rely on any plug-in, etc. It must be able to display PDF files on its own without any help from the browser.
|
| Regulate data stream | 27 Sep 2005 00:54 GMT | 3 |
Does anyone know a way of regulsting the flow of data through a buffered output stream. ie I would like to limit the output to say, 10kb/sec via multiple threads. Would I need to change the buffer size or implement a Thread.sleep in the loop or some other way?
|
| word processing | 26 Sep 2005 23:54 GMT | 7 |
What sort of data structures would be best for storing a document for a word processing program in memory (it supports images/text and various font sizes/faces... think Microsoft Word)? I got this wrong in an interview and am curious about it.
|
| Accessing POI generated Excel from client | 26 Sep 2005 23:54 GMT | 1 |
We are trying to export data from jsp to excel. As there is problem with size of excel being downloaded, we are using POI which solved our problem of memory and time taken to download. But now we are not able to access the file from the client. The problem is as follows.
|
| problem in Beanutils.copyProperties() | 26 Sep 2005 21:38 GMT | 2 |
I am having a problem in using copyProperties() of org.apache.commons.beanutils.BeanUtils class I am doing it in this way BeanUtils.copyProperties(destBean,srcBean)
|
| Distribute J2EE.jar | 26 Sep 2005 21:36 GMT | 1 |
Hi I was wondering if it was legal to distribute sun's j2ee.jar. If anyknows could they point me to where it is documented. thanks Rob.
|
| Tomcat 5.5.9, correct directory for DB driver? | 26 Sep 2005 21:24 GMT | 7 |
I'm using Tomcat 5.5.9 on Windows 2000. I get the error below when I try to visit a page of my app that accesses the DB. I've tried putting the DB driver "mysql-connector-java-3.1.8-bin.jar" in these locations:
|
| Strange tiff | 26 Sep 2005 18:53 GMT | 6 |
I try read tiff files from disk by JAI API. But sometimes a get error. For Example: (Function reading a tiff is taken from JAI tutorial) java.lang.ArrayIndexOutOfBoundsException: 380368
|
| regexp for legal JNDI name (covering check for 2 space sequence) | 26 Sep 2005 18:29 GMT | 11 |
I found I needed to build a regexp for a legal JNDI name. Tracing through the schemas, it appears that a JNDI name is supposed to be a "xsd:token", which has a curious definition. From the definition, it doesn't have leading or trailing spaces, or carriage returns, line
|
| Correct Identation/Contex can solve the too many compiler error messages problem when a closing bracket is missing. | 26 Sep 2005 16:56 GMT | 107 |
Sometime ago on the comp.lang.c, I saw a teacher's post asking why C compilers produce so many error messages as soon as a closing bracket is missing. The response was simply because the compiler can't tell where a bracket is missing.... a few weeks have past, I requested a feature ...
|
| Accessing in a static way | 26 Sep 2005 16:19 GMT | 4 |
I have 2 applications: one is stand-alone and one is using J2EE container. So for Connection logic I wrote code to support both DataSource (to be used by J2EE app) and DriverManager (to be used by stand-alone app). So public interface ConnectionManager {
|
| Expression Language in JSP | 26 Sep 2005 16:06 GMT | 1 |
I'm trying to use the Expression language in a JSP page but I cannot get Tomcat to enable EL evaluation. In Web.xml I have the following: ---- snip -----
|