| Thread | Last Post | Replies |
|
| Java Swing Certified? | 12 Sep 2005 19:25 GMT | 6 |
I'm a Java Certified programmer (310-035) and currently I'm working with Swing GUI components in my job. I would like to ask if anybody knows if there's any certification exam for Swing-AWT. I know this topic was removed from the programmers exam,
|
| SwingWorker and inherited thread priorities | 12 Sep 2005 17:40 GMT | 5 |
There is a potential problem with inherited thread priorities, described in a recent tech tip from Sun: http://java.sun.com/developer/JDCTechTips/2005/tt0727.html#1 However, the SwingWorker class (3rd version) described at
|
| Starting JAR from java code | 12 Sep 2005 17:00 GMT | 5 |
i have one question. I have two jar files. First is main program, second is a update program. update jar run as first , check main program and download upadets. After that he suppose to run jar with main program and close. But I don't know how
|
| Displaying Retrieved Data on Applet using HttpConnetion | 12 Sep 2005 13:17 GMT | 3 |
I m trying to connect to yahoo.com and show its header fields on an applet. The Problem i m having is that when i use any IDE to run this code, it is working fine. but when i use class file in html code, The applet is
|
| Any common alternatives to java.text.DecimalFormat | 12 Sep 2005 11:10 GMT | 6 |
Since there appears to be no possibility that Sun will agree to any changes to the functionality of java.text.DecimalFormat despite its manifold deficiencies, are there any common workarounds or alternatives? Examples of deficiencies:
|
| JNI wrapper class | 12 Sep 2005 10:38 GMT | 2 |
Am writing a JNI wrapper class. Are there any performance advantages of the JNI C routine calling a Java method to set some variables all at once, or using SetIntField, SetByteField, etc, to set the variables?
|
| Hair-lines when drawing transformed BufferedImage | 12 Sep 2005 08:56 GMT | 18 |
I'm having trouble with drawing transformed images. On some images there are hair-lines displayed at the top or left edge, which are not part of the original image data, but seem to be an artefact of some process under the hood.
|
| Obsessive Compulsive XMLing | 12 Sep 2005 08:42 GMT | 34 |
No doubt that XML has its great and countless benefits. *But*, haven't programmers developed an out-of-control addiction to such data format? This obsession of XMLing everything (build scripts, database mapping, setup & configuration, ... etc.) without proper GUI tools to
|
| Java web services | 12 Sep 2005 08:39 GMT | 2 |
I am trying to write a tool that allows interactive querying of arbitrary Web Services. I have a reasonable starting point, using Sverre Huseby's SOAPDebugger, but it does not support complex types (or arrays).
|
| JSP to Excel loading | 12 Sep 2005 08:05 GMT | 4 |
We are trying to export data from jsp to excel using response.setContentType("application/vnd.ms-excel"); But after export, the file size(85MB) is becoming 10times more than the normal excel(8MB, When copied the data manually).
|
| choosing a package name | 12 Sep 2005 06:59 GMT | 43 |
The convention for choosing a package name is to use your registered domain name, in reverse order. What do you do if you don't have a domain name and want to publish your package?
|
| jsp include and jsp param | 12 Sep 2005 05:26 GMT | 2 |
I have the following: <jsp:include page="anotherPage.jsp"> <jsp:param name="portletResponse" value="sdfasdfsd"/> </jsp:include>
|
| Does using generics complicate the use of interface-type declarations? | 12 Sep 2005 03:45 GMT | 15 |
In a recent post I saw this line of code:
> ArrayList<String> _hidden = new ArrayList<String>(); If we ignore the use of generics, we can rephrase this as
> ArrayList _hidden = new ArrayList(); |
| Naming Convention(s) | 12 Sep 2005 01:23 GMT | 24 |
People usually feel very passionately about matters such as this one. I have not seen any official pronouncement on it: Do you prefer singular or plural names for: 1. arrays
|
| Wierd problems with sockets | 12 Sep 2005 00:28 GMT | 5 |
I use the following code to provide the socket communications for a client/server application. At this point the main thread has accepted a client socket connecti0on over the server socket and has spawned a client thread that services the request via this code.
|