| Thread | Last Post | Replies |
|
| [Help] Viewing filesystem with JTree | 28 Mar 2005 17:04 GMT | 1 |
I know this subject has been discussed here before, but I don't want to deal with tree models etc. I built a custom tree node (code at end) and hooked it to a JTree like this: pathTree = new JTree(new FileTreeNode("/"));
|
| paint(); How to avoid flickering? | 28 Mar 2005 16:48 GMT | 9 |
I'm writing a backgammon game which involves drawing the board on a JPanel and drawing the checkers on the board and have the user move them around per drag and drop. The drawing contents of the JPanel are scaled accordingly as the JPanel is resized.
|
| Where to place Client and Server classes | 28 Mar 2005 15:10 GMT | 7 |
if i have a Client and Server classes, in which package should i place them? package xx.client; <-- Client class here. package xx.server; <-- Server class here. package xx; <-- or both Client and Server classes here?
|
| RMI first step | 28 Mar 2005 15:08 GMT | 2 |
For testing purpose, I'm trying to use RMI... Here is the exception when I run Main.java : Exception in thread "main" java.security.AccessControlException: access denied (java.net.SocketPermission 192.168.0.1:1099 connect,resolve)
|
| how to use servlet to receive message (not soap message) | 28 Mar 2005 14:39 GMT | 8 |
Hello Dear I'm wondering, is it possible (or how) to use a servlet to receive a message, like a servlet which extends JAXMServlet and implements ReqRespListener can receive SOAPMessage.
|
| javamail estimated time | 28 Mar 2005 14:24 GMT | 1 |
Sorry for posting this again, but let me reformulate my question : Is there a way to compute the estimated time for sending an email with some attachments? I think I can have the speed connection and the size of the email, but this
|
| javamail | 28 Mar 2005 14:19 GMT | 1 |
Does anyone know a way to implement a progress bar with javamail? I would like to show the estimated time for receiving e-mails with a big attachment (a 3MO picture for example)? Thanks for any idea.
|
| copying Image to system clipboard | 28 Mar 2005 13:12 GMT | 1 |
As far as I can tell this is not possible to copy an Image to the system clipboard with java at the moment. However I need it for a project I'm working on. Has anyone found any hacks to make this possible? Also, are there any chances that this feature will be
|
| Kill a Job which is Already Running | 28 Mar 2005 10:03 GMT | 3 |
can any one tell me how to Kill a Job which is already running. thankyou
|
| Please help a newbie | 28 Mar 2005 07:27 GMT | 4 |
I am trying to get my webcam to open in a small window from a linked page. If you go to:- www.daviv.com/badgercam.htm you will see the link. I don't need a whole page, I just want to open a smaller window. I have what I believed the script to do it but it still allows me to ...
|
| Credit card validation software[sorry,OT] | 28 Mar 2005 07:05 GMT | 4 |
Sorry for the OT. I have given a task to build a on-line purchase software in java and oracle.The credit card must be valued online. I have seen on-line purchase sites but I don't know what java function should be used for
|
| Configuring Oracle 9i thin driver for WAS 5.1 | 28 Mar 2005 06:30 GMT | 1 |
HI Group, I have installed WAS 5.0 in my machine recently and would like to configure Oracle JDBC thin driver. I tried it with the admin console, with the following parametners
|
| How can I use java.util.regex Classes | 27 Mar 2005 21:57 GMT | 1 |
regards: How can I use java.util.regex Classes Matcher Pattern
|
| Abstract Factory using String paramater as Conctrete Class | 27 Mar 2005 21:45 GMT | 2 |
I need to use a Factory pattern to create services class. i have an interface --> MyService i can have an abstract class --> MyAbstractService i have several concrete class for this service --> MyServiceVersion1_1
|
| using Process.waitFor(), but BufferedReader on output stream not ready?? | 27 Mar 2005 21:43 GMT | 6 |
I have the following code: Process proc = Runtime.getRuntime().exec(cmd, env); int rc = proc.waitFor(); BufferedReader reader = new BufferedReader(new InputStreamReader(
|