| Thread | Last Post | Replies |
|
| Why my system doesn't have ExampleFileFilter class? | 29 Sep 2006 05:44 GMT | 5 |
I am reading the Sun's JFileChooser API web page. It mentions using the class ExampleFileFilter to add file extension (like .txt, .gif) to the JFileChooser object. But when I search for ExampleFileFilter in the API page, it doesn't exists. There is only FileFilter interface there ...
|
| java.util.prefs.Preferences question | 29 Sep 2006 04:33 GMT | 1 |
Hi... I was working with the Preferences class, and I was wondering about the importPreferences method. Specifically, after you do an importPreferences, do the elements loaded get kept in the runtime space
|
| RMI thru Internet | 29 Sep 2006 03:44 GMT | 9 |
Im using RMI to connect java applet with a remote server. The connection is successful when the server in same machine or in the same flat network
|
| Reading integer values from a txt file and save them into an array | 29 Sep 2006 03:38 GMT | 1 |
I would like to read integer values from a txt file : sam.txt 66 78 99 90 23 34 56 78
|
| true false problem | 29 Sep 2006 03:18 GMT | 7 |
System.out.println(Math.min(-0.0,+0.0)); System.out.println(Math.max(-0.0,+0.0)); System.out.println(Math.min(-0.0,+0.0) == Math.max(0.0,+0.0)); output:
|
| Why I cannot have a method inside another method? | 29 Sep 2006 01:46 GMT | 2 |
I am sorry for bothering you all. I ran into another question and solving this question by myself may take a long curve. I just realized that in Java, the following is not allowed: public void sayHello()
|
| EJB 3.0 vs Spring | 28 Sep 2006 22:07 GMT | 2 |
I am considering using EJB 3.0 with an Application Server (e.g. JBoss) or Spring with a Web Server (e.g., Tomcat). In either case, I plan to use Hibernate. What are the major pros and cons of each approach? Thanks. Steve
|
| fighting the BorderLayout | 28 Sep 2006 21:30 GMT | 9 |
I need to place components which I previously add()'ed to JPanels on the top row of a swing GUI. The JPanels containing the components should go on the far left, the center and the far right. So I thought that a BorderLayout would do. I tested all JPanels separately placing
|
| RMI question | 28 Sep 2006 21:08 GMT | 7 |
Is there anyway to test the state of a Remote (on the client) to see if its still valid. This is so I can issue another lookup if its not valid. If the server went down and came back up after the client initially did
|
| I cannot understand why an object is created this way | 28 Sep 2006 19:57 GMT | 1 |
I don't understand such code: Suppose I have a class called MyClassA already: public class MyClassA() {
|
| replace double inverted commas into slash double inverted commas in string | 28 Sep 2006 19:19 GMT | 2 |
I have a var of String type the string include double inverted commas (") and I need to replace it into slash double inverted commas (\") example:
|
| Why I can NOT have a class inside a method? | 28 Sep 2006 19:17 GMT | 4 |
I have a method. Inside it, I need a ActionListener. The code is like: public class DataMgr { private JFileChooser chooser = new JFileChooser();
|
| Creating beans from database tables | 28 Sep 2006 19:05 GMT | 1 |
My problem is that I have to create beans from all the 100+ tables that are in my database and it wouldn't be very joyful doing it manually. So do you know any solution to this? Hibernate tools? Eclipse plugins? I guess there's no way doing it while my application is running,
|
| Lost in J2ME, please help me! | 28 Sep 2006 18:20 GMT | 4 |
Hello folks, I'm already a Java EE developer, but from know, I'll also have to develop some applications for PocketPC's. In fact I belive that Sun's CLDC have a lot of good tutorials and books, but when it comes to CDC, it becomes quite hard to find a good
|
| bug in j2me implementation of Random? | 28 Sep 2006 17:44 GMT | 5 |
bug in j2me Random implementation? From: tom arnall <kloro2006@gmail.com> To:
|