| Thread | Last Post | Replies |
|
| Coming to java from C++: multiple inheritance | 11 Jun 2005 03:36 GMT | 3 |
In C++ it is easy to have an object with the function of two classes by inheriting from them: class View { ... } class Window { ... }
|
| Arrays | 11 Jun 2005 01:45 GMT | 8 |
I'm a real newbie to java but I'm stuck on arrays and would really appreciate some help. I've created two java classes test and collect within my results.jpx file. The code for test is:
|
| Object in Memory | 11 Jun 2005 00:57 GMT | 1 |
Is there a way to determine from within a Java app what objects are in memory and how much memory they are using? What kind of memory statistics are available in the JVM besides runtime.freeMemory(), runtime.totalMemory(), and runtime.maxMemory()?
|
| java newbie | 10 Jun 2005 16:20 GMT | 3 |
Could someone please advise which of the free downloads on the internet would be my best start for programming in java. I have some experience of C (though even that is rusty), never quite got to grips with C++.
|
| methods that return void.. | 10 Jun 2005 15:00 GMT | 3 |
pls, what is syntax for methods that return void? for example cookie.setComment()... I can do cookie.setComment();
|
| Remote Development | 09 Jun 2005 23:28 GMT | 1 |
I'm looking for suggestions about how to develop Java software remotely over a DSL line. The software to be developed will run on the remote server which also holds a very large data set needed by the software. I could just x-host my development environment, but it would be too
|
| Applet that detects ip behind anon proxy... | 09 Jun 2005 13:21 GMT | 2 |
Does anyone here know of such an applet? thankyou
|
| Can I write George W.Bush games with Java ??? | 09 Jun 2005 12:08 GMT | 5 |
Bush is the greatest hero in the history of mankind and I must write Bush games.Is that possible ?
|
| request dispatcher problem | 08 Jun 2005 11:01 GMT | 3 |
Hi .. I am trying to pass control from a servlet to a jsp, using request dispatcher using the code, RequestDispatcher rd = null;
|
| Eclipse can create jar everytime I save? | 08 Jun 2005 09:15 GMT | 5 |
Is it possible with eclipse 3 (or with a plugin) to create automatically a jar file everytime I save a class. So everytime it will rebuild the .class files it will recreate the .jar file. Thank you
|
| java linux commapi | 08 Jun 2005 04:14 GMT | 5 |
I've made a java program to communicate with a modem under WinXP and works fine. I've used Java commapi. Now, I've to run the same program under linux. I've downloaded what I need like indicate on http://www.rxtx.org/ and on http://wass.homelinux.net/howtos/Comm_How-To.shtml, but ...
|
| Converting grep/sed combination to Java | 08 Jun 2005 00:49 GMT | 8 |
I am using the following grep/sed combination to extract hyperlinks from a document on Windows 2000. This is a one-line command: grep -o -E "href=\"[^&#:;+?/\.0-9A-Za-z_-]*\"" Contents.html|sed -e "s/href=\"//" -e "s/\"//"
|
| What's wrong with this generic type?! | 07 Jun 2005 23:30 GMT | 13 |
Please regard the following code snip: Vector[] vec = new Vector[number]; for (int i = 0; i < number; i++) { vec[i] = new Vector<Integer> ();
|
| About MySQL Connector J jar files | 07 Jun 2005 20:07 GMT | 1 |
I saw there are 2 jar files, One with a -g and one without. What are their differences ? mysql-connector-java-3.1.8-bin-g.jar mysql-connector-java-3.1.8-bin.jar
|
| Graphics2D and AWT components? | 07 Jun 2005 17:47 GMT | 1 |
Do objects using Graphics2D methods for drawing count as an AWT component?
|