| Thread | Last Post | Replies |
|
| webservices - service under servlet context | 05 Feb 2006 13:20 GMT | 1 |
Can't seem to access my service under localhost url the context is setup correctly in tomcat/conf/Catalina web.xml is correct /services/ path set: <servlet-mapping>
|
| Selector or different threads | 05 Feb 2006 12:25 GMT | 1 |
Im designing a communication program which has to listen to 5 different ports at all time, and handle async messages from the ports. What design is better: using Selector or using different thread for each socket?
|
| testing posting | 05 Feb 2006 09:53 GMT | 2 |
|
| Canvas Double Buffering - help! | 05 Feb 2006 01:59 GMT | 2 |
Hi all, I need some double-buffering help... I have created an applet, which has a paint() method. There is also a derived Canvas class I made ("PlotCanvas"). The applet draws two instances of these, each with its own paint() method. So, I tried following the instructions here:
|
| Event passing in (Swing) GUI Application | 04 Feb 2006 10:37 GMT | 3 |
I'm build a GUI app using Swing. I want to have it be as modular as possible for all the usual reasons including reuse of common components. Some of my componets are GUI panels, some are non-GUI classes.
|
| Program will add but cannot get it to multiply | 04 Feb 2006 03:51 GMT | 14 |
Just started Java and want to multiply odd numbers between 1 and 100. However, at the moment i can only get them to add. I tried replacing the + sign with the * multiplication sign but to no avail. Any suggestions?
|
| Ant with checkstyle problem | 04 Feb 2006 02:06 GMT | 6 |
I can't for the life of me get checkstyle to work. I the latest versions of both checkstyle and ant. I would like to use the antlib feature of the latest ant. I think I need someone to step me through it, because I've read every
|
| Javadoc issue | 03 Feb 2006 20:41 GMT | 2 |
Sorry if this is a really stupid question, but... I ran javadoc on my code as follows: javadoc -sourcepath $sourcepath -subpackages $pkg1:$pkg2 -d $outputdir The version is javadoc from jdk1.5.0_06.
|
| newbie cant find constructor error | 03 Feb 2006 18:02 GMT | 2 |
I've typed in the following code from a book I'm reading and it wont compile. I know the classpath is OK as if I create a new ShowThread() without a string initialiser then the code compiles. But as soon as I place a String in there it wont compile. Even though the only ...
|
| Frame refresh/reload prob. | 03 Feb 2006 09:41 GMT | 6 |
Hello. I have made a program that draws a graph and such. However, when I try to Maximize or change the window size I get these...ummm... artifacts? appearing. It seems that some of my labels are being reprinted with higher and higher Y-coordinates.
|
| Void method and return associated with multiple if's | 03 Feb 2006 01:37 GMT | 7 |
I have a situation where there is one void method public void(event){ if (actionCmd.equals("Update")) { if(condition){
|
| What it the type of the Class without modifier | 02 Feb 2006 22:05 GMT | 27 |
I got a java file contains the following code: public class ABC { ...... }
|
| regular expression: if this is impossible, how to proceed ? | 02 Feb 2006 21:13 GMT | 14 |
I have a string which denotes a filename which optionally may have an extension. Because I need to create an extra (supporting) file which will contain basic certificates I decided to add (or change if its already there) an extension .crt to denote the certificates.
|
| Book still relevant? "Essential Java Style" | 02 Feb 2006 18:48 GMT | 1 |
I recently came across a book written by Jeff Langr called "Essential Java Style" which was published in 2000. What I am wondering is, if anybody who has read the book would say that the contents of the book is still relevant with jdk 1.5.
|
| Local variable or not? | 02 Feb 2006 16:32 GMT | 10 |
I realise that using a local variable for some object you need multiple times in a method is useful, especially if it is computation intensive to compute that object (or value). I was just wondering whether this is still the case if the method for getting to that object is a simple
|