| Thread | Last Post | Replies |
|
| Applet - Creating new objects from a Button Listener | 05 May 2007 15:07 GMT | 4 |
Hello everyone, I'm attempting to create JComponents from when a button is clicked. However I'm assuming I'm missing something? (Or it's not possible) This is some quick prototype code which shows my intentions.
|
| MDI, Master/Detail and Reports? | 05 May 2007 13:46 GMT | 1 |
MDI, Master/Detail and Reports? I am a Visual Studio.NET developer but I want to consider JAVA and NetBeans for future development efforts. By the way I am interested on developing Desktop not WEB applications. I want to find out if the
|
| Bind Bean to HTML | 05 May 2007 13:32 GMT | 1 |
Is it possible to map a Bean directly (and dinamically) to a HTML form? The idea is almost like this: https://bean-properties.dev.java.net/tutorial2.html
|
| How to compute the number of occurance of each element in an array list? | 05 May 2007 13:29 GMT | 16 |
I am designing an computer aided test system in Java. For multiple choice question, I have a field of userResponses of ArrayList. How do I calculate how many occurence of each type of user response? I ask because each time a user finishes a multiple choice question, his
|
| Decompiling Obfuscated code... | 05 May 2007 08:48 GMT | 2 |
I recently had to 'de-obfuscate'(not exactly, may be I can call it decompile-and-compile-that-code-again with a bit of undestanding) a java class file from a J2ME application, to customize it according to my needs. I used JAD(a small, free and fast Java
|
| Unix's "stat" equivalent in Java? | 05 May 2007 08:22 GMT | 3 |
Is there any implementation of the UNIX function "stat" or "lstat" in pure Java (not JNI implementation) that mimics the UNIX version closely? Would appreciate any pointers on it. Thanks. Napi
|
| Why JWindow can not catch the KEY Type event? | 05 May 2007 06:42 GMT | 3 |
my code is: JWindow window= new JWindow(); window.addKeyListener(new KeyListener() { public void keyTyped(KeyEvent e) {
|
| Taking a Screenshot in Java | 05 May 2007 04:52 GMT | 6 |
I've been trying to Google for this, but considering one of the terms is "screenshot," it's almost impossible to get past the noise on this. I want to have my program take a screenshot of the entire screen when a button in a Swing window is pressed. I do mean I need a full ...
|
| help with eclipse | 04 May 2007 23:53 GMT | 4 |
where can i find the URL to download eclipse and all the plugging to work with java please be specific with the information, i am new with java. i all ready search in the web of http://www.eclipse.org/downloads/
|
| JAVA_HOME not picked up as en var | 04 May 2007 23:50 GMT | 1 |
Why wouldn't this work? ~ #!/bin/bash MNT=/mnt/sdb5
|
| Casting an object to a genericized TreeMap | 04 May 2007 19:36 GMT | 6 |
What do you think of this code ? Is there a better way do enforce this kind of cast ? public static <K, V> TreeMap<K, V> treemap(Object o, Class<K> keyClass, Class<V> valueClass) {
|
| Query:What does main thread do in java? | 04 May 2007 17:41 GMT | 5 |
I'm new to java. I want to know what does main thread do when a java program is excuting! Thanks in advance!
|
| Query:lock by virtual object! | 04 May 2007 17:39 GMT | 2 |
I saw a demo as follow shows how to use virtual object to lock key resources in order to maintain synchronizing if there are several threads. class ClassName implements Runnable{ String str = " ";
|
| A sentence out of my anticipation! | 04 May 2007 14:28 GMT | 5 |
Here is a demo to test java's multithread: class MyThread extends Thread{ public void run(){ while(true){
|
| design pattern question | 04 May 2007 12:30 GMT | 1 |
I read an article (http://jdj.sys-con.com/read/36709.htm) talking about how to apply design pattern (facade) whilst designing i18n application. The source code on the website is no longer available, therefore,
|