| Thread | Last Post | Replies |
|
| Exceptions handling | 08 Sep 2005 21:59 GMT | 5 |
I build a DAO method to get Location object by an id: public Location getLocationById( int locationId ); I will only call this method when there should be a Location having same id as locationId. So if I could not find that Location for any reason its an
|
| inner classes and other stuff... | 08 Sep 2005 19:54 GMT | 6 |
from latest oreilly Learning Java, pg 623: www.francesdelrio.com/java/TextEntryBox.java (SSCCE) I have a few questions about this example: 1. a second class gets created (TextEntryBox$1.class) when this is
|
| Experience with WJB-314-180 ? | 08 Sep 2005 18:38 GMT | 2 |
I'm considering to take the SUN Webcourse WJB-314-180 in order to prepare for the SCWCD exam (next to the Head First and SWCD Exam Study Kit (Desmukh) books). Does anyone has experience with this web course by sun?
|
| J2ME and Bluetooth | 08 Sep 2005 18:27 GMT | 1 |
we are encountering some problems conncting us to the WRAP THOR evaluation kit using a mobile. Actually we are encountering some problems connecting several mobiles among each other as well. Maybe you can help me.
|
| java method returning an array of 2 integers | 08 Sep 2005 18:16 GMT | 10 |
Hello to everyone, what i want to achieve is to write a java method that returns 2 integers (the minimum element of an array plus its position). Is it possible to write a java method that returns an array of integers?
|
| StopAnalyser and French | 08 Sep 2005 16:56 GMT | 1 |
I am trying to index and search some french content. I am using the StopAnlyser. In my application searching for any string with an accent returns zero hits.
|
| Java paths | 08 Sep 2005 07:47 GMT | 6 |
I am struggling with installing a package that uses Java. I am running Solaris 9 and the install script outputs the following: ocinstall: I must be able to load the java shared library to proceed with this installation. This means that the proper java
|
| method syntax question.. | 08 Sep 2005 04:20 GMT | 4 |
pls why do some methods have ');' at the end? (had never encountered this, I think, until I started doing GUI stuff..) here's an example, from http://java.sun.com/docs/books/tutorial/uiswing/learn/example1.html
|
| importing external package into applet.. | 07 Sep 2005 22:54 GMT | 9 |
I'm trying to run an applet w/an external package that I have put in C:\tomcat\common\lib; applet is in C:\tomcat\webapps\appName I import package the usu. way (import org.jivesoftware.smack.*;) it compiles fine; but when I try to run it in browser it won't run.. when I try to
|
| program design question | 07 Sep 2005 20:05 GMT | 13 |
2 simple questions from a learning programmer: 1) Is it possible to have multiple action listeners in several different classes and packages, or must you centralize all your listeners in a method of the main class?
|
| how to notify data has arrived | 07 Sep 2005 05:30 GMT | 1 |
Hey all, I have these code snippets, the top one is in my GUI. I'd like to know how to tell my GUI that my data has finished processing in a thread dropped by the GUI's main class.
|
| advice for Java certification? | 07 Sep 2005 01:04 GMT | 1 |
Do you have any advice to give for some one who will take the Java Certification? Both the programmers part and developers exam?
|
| Preserving alignment of the bar. | 07 Sep 2005 00:36 GMT | 2 |
Given an application as shown below, is there a way to keep the moving bar in the same relative position with the buttons (2 steps per button and aligned at top/bottom) on the buttons right side? If the user does a resizing it after a "run" by using a mouse to grab of the corner of
|
| new IE -> new session, but new Firefox -> same Session ? | 06 Sep 2005 16:52 GMT | 3 |
While experimenting with session i noticed the following. If i call a sertain servlet from Firefox, there is a sessionid with let's say 1. if i call the same Servlet from a new IE window, i get a new sessionid ='2'. If i then open the same again in Firefox, the sessionid was the
|
| Question about debugging .class file | 06 Sep 2005 16:13 GMT | 11 |
When debugging a C or C++ binary file, the file is different from the release version of binary file (debug version binary file is larger). My question is, if we want to debug a Java binary file (.class file), is the version of file (which we use to debug) the same as the file ...
|