| Thread | Last Post | Replies |
|
| Nightmarish XML Classloader issue with Tomcat | 31 Aug 2007 21:57 GMT | 3 |
I'm dealing with an unknown version of Tomcat running under JDK 1.6. While I'm sure I can figure out what version of Tomcat I have, altering it is not an option because I am a developer in a large organization and the code I write must deploy correctly on many other
|
| when to use/not use JFrame or Jpanel in Swing or AWT? | 31 Aug 2007 17:20 GMT | 2 |
hi friends , myself dilip,currently learning java. During practicals of java i got confused because sir sometime use JFrame or sometimes Jpanel in Swing / AWT .
|
| any book to start database and visual application under linux in java | 31 Aug 2007 14:37 GMT | 2 |
i search for a start to build applications under linux using java & netbeans i wanna build visual applications and database applications is there any book discuss these two notes ?
|
| How can I get SQL text when using Hibernate | 31 Aug 2007 12:26 GMT | 14 |
I am using hibernate for persistence data, but unfortunatelly I had to save the data by myself for my special project. Every save/update/ delete operation I should get the SQL and save them to the text files. And I have two problems:
|
| Eclipse and CVS, Eclipse wipes out CVS directories | 31 Aug 2007 11:19 GMT | 1 |
I have a perplexing Eclipse & CVS question. I am having Eclipse be CVS enabled. The trouble is that Eclipse will remove the CVS directories when it feels like it. But it still knows about CVS since commiting and stuff still works in Eclipse since it puts back the
|
| Unicode chinese | 31 Aug 2007 11:10 GMT | 24 |
String chinese = "\u4e2d\u5c0f"; System.out.println(chinese.getBytes().length); Why does this return 2?
|
| connection problem | 31 Aug 2007 09:43 GMT | 1 |
I am using Tomcat 5 and jdk5. My mysql version is 11.18. I am using linux kernel version 2.4 my mysql-jdbc connector version is 5
|
| Newbie problem! Using <%=%> to output HTML in JSP | 31 Aug 2007 09:28 GMT | 4 |
I should probably know this but I have some HTML in a variable (loaded from a database), and want to output it to a JSP file (you know what I mean). I'm using the following code: <% String ImageHTML = "<a blah blah blah>Link</a>";
|
| How do you iterate over a List and remove elements? | 31 Aug 2007 06:28 GMT | 16 |
I've got an ArrayList and I want to iterate over the list and remove the occasional element. If I use the new for loop it throws a ConcurrentModificationException. An Iterator is going to have the same problem. There must be some simple way to do this that I'm not thinking
|
| J2EE vs Java | 31 Aug 2007 05:08 GMT | 2 |
Can someone tell me the difference between J2EE & Java, The reason is because i'm a Java recruiter and now my clients want me to recruit J2EE candidates, how do I tell the difference between them ?? I have to apologies because I tried searching for it on the net and
|
| disable column header display | 31 Aug 2007 02:31 GMT | 1 |
does anyone know how to disable the columnheader so i only see the table without any header. i tried X.setTableHeader(null); but that didnt work. Thank you.
|
| Tomcat and web.xml | 31 Aug 2007 00:28 GMT | 2 |
Alright. Here's a definitive newbie question. Tomcat parses the web.xml file. Where does it whisk the resulting dataset to? Is it part of the Servlet class? I've already tried getServletContext() and getServletConfig(). Both
|
| Mutliple thread access to object method | 30 Aug 2007 21:35 GMT | 2 |
Can multiple threads access the same object public void method simultaneously? Or does the method need to return for each thread? I guess not because that's what public synchronized void is for?
|
| When adding a customized JPanel, everything disappears | 30 Aug 2007 21:33 GMT | 1 |
I am trying to write an application that uses a JSplitPane. I am working on customizing the JPanel on the left side of the SplitPane. So far, the only component I've added to the JPanel is a JScrollPane. When I add the scrollpane, my splitPane nor my Menu appear when I run
|
| Struts: XHTML support | 30 Aug 2007 21:09 GMT | 1 |
I'm writing apps in Struts, and our pages are supposed to be xhtml 1.1. We're using Struts 1.1, which has an "xhtml" attribute for the "html" tag. When you use that tag, you get a "lang" attribute in the rendered html tag, which is not allowed in xhtml 1.1. And you get a
|