| Thread | Last Post | Replies |
|
| NullPointerException on getParameter method | 25 Jul 2005 12:08 GMT | 2 |
I'm trying to get a parameter for my applet from the a web page but I always receive a NullPointerException. I'm developing with JBuilder, and debugging the code I can see the line: this.getParameter("ProxyURL")
|
| Can't get my first applet to work | 25 Jul 2005 11:46 GMT | 8 |
I am following an example from Chapter 1 of a book, and I created an HTML file and a class file. The HTML includes this line which pops up a window. <applet code = "first1.class" width = 300 height = 200>
|
| Collections API--counterintuitive behavior | 25 Jul 2005 11:33 GMT | 5 |
I'm adding 80368 words (sorted alphabetically) into different data structures and then serializing the entire container into a file. The times that I got are shown below (in millseconds), the first column being the time taken to populate the container (by reading each word
|
| rendering hints | 25 Jul 2005 10:34 GMT | 1 |
Was 1.3 the first version of Java that let you do this? protected void paintComponent(Graphics g) { Graphics2D g2d = (Graphics2D)g; g2d.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING,
|
| repaint() problems | 25 Jul 2005 10:27 GMT | 4 |
I'm writing a swing application that needs to repaint() different rectangular areas on a JPanel inside a loop. I've noticed, however, that when a call to repaint() is in a loop, only the last call to repaint() (in the last iteration) is actually called. Being that the
|
| Tomcat Authentication with Realms | 25 Jul 2005 10:25 GMT | 3 |
I've successfull configurated tomcat (5.0) to use the realms for authenticating user. Basically I have a set of roles and some security constraints for limiting the access to some pages.
|
| JPS Error -> "Invalid Doc Flavor" | 25 Jul 2005 10:08 GMT | 1 |
I want to use the Java Print Service(JPS) API to programatically send PDF files to a printer. I need to send these files to the printer without any user intervention. I am able to print text files but have not been successfull in printing
|
| Giving Rectangle2D a border | 25 Jul 2005 09:56 GMT | 7 |
is it possible to give a rectangle (class: Rectangle2D) a 3D-like border? I'm relatively new to java and can't seem to figure out if this is possible and how it could be accomplished. Thanks.
|
| new to jdbc! | 25 Jul 2005 09:36 GMT | 4 |
I'm new to jdbc programming, and I can't find an answer for my problem. Take for example this bunch of code: protected void executeQuery( Connection con, String sqlStatement ) throws Exception {
|
| Sending spplication to background | 25 Jul 2005 06:44 GMT | 1 |
All, The application (Running on Unix or Linux) that we are trying to develop has the following requirements: 1. We need to prompt for password at the start of the java application.
|
| Foreground and backgroud process using java | 25 Jul 2005 00:27 GMT | 4 |
All, How do we bring and send a Unix process to foreground in Java? Shekar Tippur
|
| UML tool | 24 Jul 2005 23:37 GMT | 9 |
I'm looking for a free UML tool (not just for evaluation) to draw class diagrams and sequence diagrams with. Anyone knowing if there is any good?
|
| How to determine the PID of your Java program | 24 Jul 2005 23:26 GMT | 3 |
I was unable to find a decent How-To for finding the PID of a Java program running on Windows, that did not use JNI. Here is a solution that uses netstat. Hope this is useful. If you have a better strategy, let me know!
|
| Getting my head around generics. | 24 Jul 2005 21:56 GMT | 38 |
Is this true? If I take a simple container class e.g . public class Stack and put <t> in like this
|
| Cookie problem | 24 Jul 2005 21:15 GMT | 1 |
I have a serious cookie problem! I save a lokale in a cookie and it works fine: cookie file name in MS IE: allan@app[1].txt
|