| Thread | Last Post | Replies |
|
| How to pass a parameter to a JWS application? | 13 Oct 2006 07:20 GMT | 1 |
It's hard to believe that this is not an FAQ, but how does one pass parameters to a JWS in a JNLP file? Thanks! Aaron Fude
|
| casting class to interface | 13 Oct 2006 05:00 GMT | 4 |
I get an exception ("ClassCastException") when I try to cast Resource to Comparable2... any idea why? // Resource.java class Resource
|
| J2SE5.0 collection syntax | 13 Oct 2006 02:37 GMT | 2 |
I am aware that the correct syntax for creating new collection is as follows: ArrayList<type> list = new ArrayList<type>(); Could someone show me the correct syntax (if any) if one gets the collection
|
| Java3D in jdk? | 12 Oct 2006 23:14 GMT | 1 |
Does anyone know why Java3D is not included in the JDK? It seems like the obvious choice to incude it. 3D graphics is in many aspects a large part of development such as games, so why not include it?. They have the 2D part.. why not the 3D?
|
| JDK 5.0 help | 12 Oct 2006 20:35 GMT | 4 |
Hi, I need help! I downloaded JDK 5.0 Update 9 with NetBeans 5.0 from official Sun web site, but, when i tried to install it, I get this message: Error in instructions. Invalid jvm file name specified in LAUNCH.
|
| Uploading files to a website using Java Servlets | 12 Oct 2006 18:52 GMT | 2 |
Has anyone written a class where data can be entered into forms in a browser and then transferred to a database? Also, files need to be uploaded directly to the website's public_html directory. If would be great if anyone had some sample code that I could play
|
| Generating char using int value | 12 Oct 2006 18:47 GMT | 1 |
I want to generate char using int value in the java. thankx
|
| getting a null pointer when trying to create a new font | 12 Oct 2006 18:46 GMT | 4 |
I have a class that extends a JDialog component. Within the constructor, I call an addWidgets method. That method contains the line in question: Font nameFont = getFont().deriveFont(1,30);
|
| How can i set up Tomcat so it processes *.asp files as JSP? | 12 Oct 2006 18:00 GMT | 11 |
In one of our Web Applications, we do have URL(s) which end with .ASP extensions such as the following: http://www.webcommerce.com/display.asp But we would like if those URL(s) end, with .JSP extensions, because
|
| how can I get the url? | 12 Oct 2006 17:34 GMT | 8 |
now, there is page, the link is like this: http://localhost:14654/aes/cTrace/default.aspx. It contains a Java Applet. when I click a button on the Applet, I hope get a url like this: http://localhost:14654/aes/cTrace/.
|
| Strange resource loading problem | 12 Oct 2006 15:52 GMT | 7 |
I've had an Eclipse project for quite some time which successfully loads images from an images folder. The class which loads the image resides in an external jar, but the images themselves live in the main project jar. Everything has been working fine, both when I deploy the
|
| How to uninstall an Java web start program? | 12 Oct 2006 14:43 GMT | 2 |
I wrote an JNLP file like this: <?xml version="1.0" encoding="UTF-8"?> <jnlp codebase="file:." href="file.jnlp"> <information>
|
| MIDlet: How to read configuration? | 12 Oct 2006 13:57 GMT | 1 |
OK, I'm trying to learn how to build a MIDlet. I'm an experienced server-side Java programmer, but I'm new to Micro Edition. The problem I'm looking at just now is how do I read configuration for the MIDlet at startup time?
|
| hpjmeter and jboss application monitoring | 12 Oct 2006 09:26 GMT | 1 |
Here is my scenario: I run java application on remote jboss server. On my computer I have installed HPJmeter(2.1). I've try to connect with my remote server without success. My questions are: What are the proper parameters to run jboss server to establish remote
|
| why do we need "static" inner classes?? | 12 Oct 2006 08:57 GMT | 3 |
I am a newbie in java and have prior OO experience in PB and .Net. The term "static" means that a class member belongs to the definiton and not the instance. i.e. it is shared across all instances. Then, why does the language allow for "static" nested classes which
|