| Thread | Last Post | Replies |
|
| JSP to Excel | 24 Jan 2007 12:45 GMT | 1 |
I am using response.setHeader("Content-Disposition","attachment;filename=fileName.xls"); response.setContentType ("application/vnd.ms-excel"); in my JSP to get my output in excel, it is working fine but i cannot
|
| Terminating a thread when program exits. | 24 Jan 2007 10:53 GMT | 4 |
Sun's developer online training website has an example of a JDBC connection pool. http://java.sun.com/developer/onlineTraining/Programming/JDCBook/conpool.html One of the things it does is start a "reaper" thread that watches for
|
| Building SWING GUI by reading XML | 24 Jan 2007 08:33 GMT | 3 |
I would like to know is it possible to build the SWING based GUI by reading the XML. In web based application, i have built web pages(html, jsp) by reading the XML. I have already done some analysis on NetBeans and Intelli
|
| Size of multi-dimensional array | 24 Jan 2007 04:39 GMT | 2 |
How do you determine the size of a multi-dimensional array? I have a 2Xn array and I want to determine what n is so I can load the array into a hash table.
|
| RMI i WebService - why this way? | 24 Jan 2007 03:39 GMT | 2 |
I just played with WebService in jdk6 and i dont understand why its like rmi - I have to generate classes. why they were able to make ejb3 simple, but this @WebService annotation needs all this generated classes. Maybe because it uses rmi, why rmi is that way ? from what i know ...
|
| Groovy for desktop apps | 24 Jan 2007 02:00 GMT | 1 |
Hi Folks.. I've been programming in Java with Swing for desktop apps.I'd like to know how Groovy will help me enhance my GUI apps? regards,
|
| Check if a final field is initialized | 24 Jan 2007 01:01 GMT | 4 |
I am creating a singleton that shall be accessed by multiple threads, possibly simultaneously... here is my code public class FooEngine implements FooInterface { private static final m_barElement;
|
| Palindrome using StringBuffer | 24 Jan 2007 00:50 GMT | 2 |
This is my program: ----------------------------------------------------------------------------- public class Palindrome {
|
| Java in a nutshell | 24 Jan 2007 00:47 GMT | 2 |
I'm looking for a book to learn Java. So I would like to know what do you think about the book Java in a nutshell ? Thank you.
|
| Log4j Debug and Info | 24 Jan 2007 00:22 GMT | 1 |
I have started using log4j recently. I have tried to put both INFO and DEBUG on console and in a file but it throws an exception log4j:ERROR Attempted to append to closed appender named [Console]. log4j:ERROR Attempted to append to closed appender named [RollingFile].
|
| Declaring outside a loop: speed? memory? | 23 Jan 2007 23:23 GMT | 5 |
Just wondering, is there a speed or memory difference between the two following codes? What is recommended? Which will easier garbage collect (suppose MyClass is big)? --- code ---
|
| Java Language Specification | 23 Jan 2007 14:57 GMT | 1 |
I am looking for downloadable documentation on the Java Language Specification. The most recent copy I can find is the third edition, located at http://java.sun.com/docs/books/jls/index.html . Is this the most recent or is there a later version that I should be looking at?
|
| need syntax colored text box | 23 Jan 2007 11:55 GMT | 8 |
i am in middle of a project where i need a JTextbox that can color what ever code writtern in it depending on the programming language used by the user. is this thing available any where ?!!
|
| Which is better (in Java), depending on instanceof a lot, or having my own getType function | 23 Jan 2007 10:14 GMT | 4 |
This question may already be in a FAQ. If it is, please accept my apology for not noticing it, and please direct me to the location. I am designing a class library for human language grammar relationships.
|
| graph / charting library for jsp servlets | 23 Jan 2007 09:33 GMT | 10 |
which is most popular (,better) charting / graphics library apart from jfreechart it should provide support for rendering graphs in web application
|