| Thread | Last Post | Replies |
|
| J2ME development logistics | 20 Jul 2005 12:56 GMT | 2 |
Good day, everyone. I've finally decided to bite the bullet and start working out J2ME in my spare time in anticipation of a future project at work. The most serious difficulties here seem to be related not to programming, but
|
| What's the proper package structure? | 20 Jul 2005 10:07 GMT | 7 |
package connection.Connection; package connection.client.Connection; // extends connection.Connection package connection.server.Connection; // extends connection.Connection or
|
| coding style/convention question | 20 Jul 2005 09:22 GMT | 8 |
Does anyone have a convention (with reasons!) for the order in which public/final/static appear in a declaration?
|
| Very Strange!! | 20 Jul 2005 07:00 GMT | 3 |
I have a Java class that has a method that generates some HTML and returns the HTML as a String. I then have a JSP page that has <%=foobar.getHtml()%> to insert this generated HTML into the web page. The HTML that is generated has a form that contains a number of tables as well ...
|
| Help using native methods | 20 Jul 2005 06:53 GMT | 1 |
I am trying to use native methods in java .Code is like :- aaa.java :- class aaa { public static void main(String s[])
|
| HashMap Keys? | 20 Jul 2005 05:40 GMT | 4 |
Hi. I'm looking for advice on using keys for a HashMap. Is it typical to just use a string as a key, e.g., "Item A", "Item B", etc.? Or are other approaches better? Since the key is just an Object, I thought there might be some other approach commonly used
|
| application/vnd.ms-excel and leading 0's | 20 Jul 2005 03:51 GMT | 2 |
I see it's been posted before but haven't seen a good solution for this one: I've got a "Results.jsp" that outputs some query results from a DB2 DB. I actually have a custom tag in the .jsp that does the actual query.
|
| JSTL | 20 Jul 2005 03:19 GMT | 1 |
I would like to transfer code from JSP to JSTL but have some problems, especially in the following code: <% if (request.getParameter(ISBN) != null){
|
| PropertyChangeListener for non gui objects | 20 Jul 2005 01:36 GMT | 2 |
I have several non gui objects that has addPropertyChangeListener, removePropertyChangeListeners and the various fire event methods. Since there are duplicate codes, is it better if i pull up those methods into a base class and have the non gui objects extend it?
|
| Executing a Java application from command line | 20 Jul 2005 01:11 GMT | 7 |
I'm trying to execute a Java program from the command line. I have set the path environment variable to point to the following: - C:\Program files\Java\jre1.5.0_04\bin - C:\Documents and Settings\Desktop\Java\Test.class
|
| SimpleDateFormat or TimeZone Problem. | 19 Jul 2005 23:58 GMT | 8 |
I have a java program which worked okay last week, but this week. I added several classes, but I didn't touch the codes related to this problem. The skeleton code pieces for the problem is attached at the end.
|
| Convert html into rtf file via Java Api | 19 Jul 2005 22:32 GMT | 4 |
We have a web application where users are able to enter html via FCKeditor. Now there is the request to create rtf reports instead of pdf. The advantage of having rtf reports is that they can be modified in Word after creating by the users.
|
| Questions about JVM internals | 19 Jul 2005 21:14 GMT | 7 |
This is more for morbid curiosity, but I'm reading up on the internals of the JVM and how the bytecode is interpreted. I plan on writing a JVM emulator, more just for academic sake. But I have a few questions. In classloading, what is generally meant by defining a class? I
|
| JUnit Access DataSource from Context? | 19 Jul 2005 21:11 GMT | 1 |
I am trying to run JUnit test case in my WebSphere Studio, but it fails during a context.lookup in my DAO class. The DataSource is defined on the server, so I start the Development Test Server. Here is a snippet of the the code in my DAO class.
|
| Is there a scripting tool to build GUIs? | 19 Jul 2005 20:57 GMT | 2 |
Sorry for the cross post but java.gui is an extremely quiet group. Hi, I looking at writing an app and I have had an idea about the gui, but I want to check if it's been done before. None of my googling has come up
|