| Thread | Last Post | Replies |
|
| help: object LifeForm composed of immutable object Location. how do I give a LifeForm a different Location object? | 06 May 2004 22:59 GMT | 8 |
some code snippets: LifeForm.java method: ----------------- public void setLocation(int x, int y, int z) {
|
| tag-lib and JSTL expression library | 06 May 2004 22:58 GMT | 6 |
Hallo, I have created a tag-lib. They ask me if it integrates with the JSTL expression library. In other words, I would like to be able to express this: <tag attribute="<% = somevar %> "/>
|
| Bitwise Operation | 06 May 2004 13:33 GMT | 3 |
Couldn't see the message Thomas f'ded, so I send this one again: Hello, in my little programm: public class Shift1 {
|
| unit testing locations | 06 May 2004 03:41 GMT | 10 |
On the one hand I've seen (most) people advocate putting all (junit) tests in a separate test package (or packages that mirror their source packages). This makes production deployment easier, but may force you into exposing methods with some sort with public access, solely to ...
|
| CVS Java Client | 06 May 2004 00:24 GMT | 1 |
All, I am looking for a sample code to use for javacvs or jcvs whereby I can log into my cvs server and perform add, update, checkin and checkout from my java program. A Look at the javadoc provided with
|
| stop does not stop the applet | 05 May 2004 22:58 GMT | 3 |
Hi every one, The applet does not stop if I put this line in the init method. I have tried this.stop(); with no result. try {
|
| Print BEL character in applet | 05 May 2004 20:57 GMT | 2 |
Is there any way to display the BEL character (ASCII code 7) in an applet embeded in a HTML page. I've made some tests with GraphicsEnvironment: 1 - I called the getFontsList() from GE.
|
| a simple question about sockets | 05 May 2004 17:05 GMT | 2 |
The accept() function of the class ServerSocket create a new Socket and return it. public class ServeurEcouteur { public static int port = 15555;
|
| StreamCorruptedException | 05 May 2004 16:07 GMT | 20 |
I am getting a StreamCorruptedException when I try input.readObject(); When I search in google, most people get more detail than just StreamCorruptedException. So I commented out the catch block to try to get the error show up in the console and got an unreported exception
|
| Need help with Java on Netscape Navigator! | 05 May 2004 04:33 GMT | 2 |
Could someone please tell me how to view java applets in Netscape Navigator 7.1? I have no problem getting java applets working with Internet Explorer, but my N.N. will not show anything except a turquoise blue colored puzzle piece that says I need to get the required plug-in.
|
| Need help with Java & Netscape Navigator | 05 May 2004 03:49 GMT | 1 |
Could someone please tell me how to view java applets in Netscape Navigator 7.1? I have no problem getting java applets working with Internet Explorer, but my N.N. will not show anything except a turquoise blue colored puzzle piece that says I need to get the required plug-in.
|
| immutable v. mutable objects in composition | 04 May 2004 23:54 GMT | 13 |
object "LifeForm" has an immutable object "Location" I want "change" the immutable Location object by generating a new Location, but it ain't working the way i wants it to. how do i get this to work, pls? it creates a new object, but never discards the
|
| JIntegra's java2com tool | 04 May 2004 23:41 GMT | 1 |
This question is about JIntegra's tool, java2com. When running java2com, is there a command-line option to: 1. specify the classes/jars to analyze 2. Output dir. to store the generated files
|
| string operation? | 04 May 2004 20:46 GMT | 4 |
Is there a way to subtract string input? I have to input time of login and log out, then subtract the 2. to get total amount used. just testing i tried this but gave me the error can't do it, so was thinking there might beanother way. any help would be appreciated greatly
|
| Getting rid of double spacing | 04 May 2004 18:59 GMT | 7 |
Hi Guys, is there a way to get rid of double spaces within a string without using the tokenizer method? I was thinking of doing a loop that goes on while two spaces are next to each other within which I'd delete the character it's up to. How do I delete a char?
|