| Thread | Last Post | Replies |
|
| Difference between these 2 codes? | 03 Sep 2004 17:50 GMT | 3 |
class B { method_1: return true; method_2: return false; finalize: if(true) print("ERROR");
|
| Help required with Tomcat | 03 Sep 2004 15:08 GMT | 2 |
I am making a small demo website using JSP. I am running Tomcat 5.0.27 Users login to the site and their personal data is displayed. For this purpose I created an XML file to hold user data. However, the file is not being read.
|
| Statusbericht Kerekes | 03 Sep 2004 11:55 GMT | 1 |
- alle Klassen nach Coding Conventions überarbeitet - SW Design für Registration - Registration Servlet, XSLT
|
| newbie question: how to uninstall Java 1.4.1 on Windows XP Pro | 03 Sep 2004 10:12 GMT | 3 |
I have installed Java 1.4.1 from the CD companion disk with the Deitel's Java How to Program 5th textbook; now I would like to download and install Java 1.5 but first I have to uninstall Java. Unfortunately the original 1.4.1 CD is broken ( while commuting )
|
| How to get class name in a static method | 03 Sep 2004 07:38 GMT | 2 |
In an instance method, the program can: this.getClass().getName() to obtain the class name. In a static method, there is no "this". Is there a way to dynamically obtain (without hard coding) the class name in a static method?
|
| i don't understand this about packages | 02 Sep 2004 19:31 GMT | 1 |
My code resolves fine with this import com.mycompany.baba.Settings; import com.mycompany.baba.Security; import com.mycompany.baba.Logging;
|
| how to store java applet for offline viewing. | 02 Sep 2004 11:03 GMT | 9 |
How to store the java applet emebedded in a web page for offline viewing? I saved the web page but it got saved without the applet.and also I searched for the corressponding .class file for the applet while I was
|
| (PLEASE HELP) java.net.SocketException: Connection reset by peer: socket write error | 01 Sep 2004 21:45 GMT | 1 |
Everytime start the Tomcat services..problem occurs.. java.net.SocketException: Connection reset by peer: socket write error. Can you tell me how to avoid it??? The speed of web is very slow now. about 1 mins per pages (html)....I think it is not related
|
| Including a folder's JAR files in CLASSPATH | 01 Sep 2004 16:51 GMT | 3 |
I have a folder C:\DevPrograms\Hibernate\lib which has 33 JAR files. I want to include them in my CLASSPATH but not hardcoding the name of the jar files; instead i want some thing like C:\DevPrograms\Hibernate\lib\*.jar so that it can pick up all jar. I tried doing it but no success ...
|
| Help with array problem | 01 Sep 2004 16:29 GMT | 15 |
I'm new to java, and have been given a small problem to deal with. I think i have a clue to what the anwser is. What would the following section of java code display? int [] theArray = { 1,2,3,4,5};
|
| Newbie question on "Implements" | 01 Sep 2004 15:45 GMT | 3 |
Forgive my ignorance but can someone tell me the signifigance of not having "implements" at the start of a class deffinition if you are using action Listeners within the class ? Thanks
|
| [Game design] connect data and GUI | 01 Sep 2004 15:42 GMT | 3 |
Hi, I'm trying to make a Java monopoly game. So far, no problem with the console game. I have a Game class, which has a Board, a List of players, etc. Now, I want to give a GUI to this app. The GUI creation is OK.
|