| Thread | Last Post | Replies |
|
| ANT if Task | 30 Nov 2009 12:11 GMT | 1 |
I have ant task which doesn't work: <condition property="isLinux"> <os name="linux" /> </condition>
|
| String literals into constants automagically? | 27 Nov 2009 15:35 GMT | 4 |
I am using netbeans. One feature that I love is the insert code feature, for automatically making getters and setters it has saved me hours of braindead tedious work. I am looking at some code now that has gardually evolved into a mess
|
| 10 things all JAVA developers should know | 26 Nov 2009 20:56 GMT | 1 |
Since JAVA (I know it's not an acronym, but it stands out like that) was officially introduced in 1995, it has changed the way most of us look at the Operating System. Bill Gate (how ironic) once said that it was not about the hardware but the software which will be the future.
|
| Trigonometry Problem (Probably due to Math.atan) | 23 Nov 2009 04:16 GMT | 6 |
So I'm writing a game similar to this one: http://homepage.ntlworld.com/bartle/volleyball-original/index.html I'm using an Arc2D for the "slime" and an Ellipse2D for the ball, and what I'm doing is when the ball intersects the Arc2D, I'm having it
|
| Iterating over a String | 21 Nov 2009 17:59 GMT | 20 |
It has bugged me that the for:each syntax would not let me write code of the form: String categories = "amq"; ...
|
| Silly question | 21 Nov 2009 17:49 GMT | 8 |
Where is best to install Java, TomCat, etc?? Under Root ie C:\Java Any reason why it would be better to install under root rather than C: \Program files???
|
| Stored Properties file gets emptied | 18 Nov 2009 12:28 GMT | 11 |
It seems there is a bug with our XMPP client (Java 1.6, smack) - I store the users settings in a Properties file. My boss tells me on some customers PCs the settings file sometimes ends up losing the contents. The application is used by two people in our company in production, I
|
| implementing the TypeVariable interface | 17 Nov 2009 23:30 GMT | 1 |
can anyone demonstrate to me how to implement the TypeVariable<D extends GenericDeclaration> interface of the java.lang.reflect package? would really be helpful for me to see an algorithm that implements getBounds() and getGenericDeclaration(). am in the clouds from reading the
|
| Student "pizza" problem | 15 Nov 2009 15:36 GMT | 6 |
This is an easy problem, so please give newbies first crack at it. Let's say you owned a chain of pizza stores, and you wanted to offer a premium. The customer takes a number off a pizza box he has purchased, and enters it into a website, to say let them play games,
|
| JtextField returning empty! | 09 Nov 2009 03:01 GMT | 2 |
I am trying to read text from a simple Jtextfield using the syntax String StrRound = txtRoundName.getText(); if (StrRound.equals("")) ... etc I am also using the method dispose() to close the window. Since when
|
| Highlighting arbitrary portions of a webpage | 08 Nov 2009 13:57 GMT | 2 |
I have a program that allows users to view images and then, by dragging their mouse accross portions of the image, draw a box around the portion and add a note that describes that part of the picture (sites like Flickr allow similar functionality). The problem with
|
| WebStart application with JavaHelp | 08 Nov 2009 02:34 GMT | 7 |
Following a previous inquiry in this group, about how to provide help documentation for my application, I've decided to distribute my webstart application using JavaHelp documentation. I understand that since JavaHelp isn't part of a standard Java
|
| Class.forName | 03 Nov 2009 03:05 GMT | 4 |
First of all I am new to java. I would like to connect to a database using the Class.forName method but I am having some difficulties If the said method is set in the main form everything works as it should but if I can't figure out how I can instansiated through a
|
| getInputMap() on JMenuItem | 02 Nov 2009 22:28 GMT | 3 |
I'm having problems tying the F1 key to the various menuitems in a JMenu object to provide context sensitive help. When the menu is open, and the F1 key is pressed, it seems that the ActionMap for the last menuitem in the menu always gets activated,
|