| Thread | Last Post | Replies |
|
| free host | 31 Jan 2005 17:05 GMT | 2 |
I'm seraching a free host for my java application. I know myjavaserver.com are there otherone ?
 Signature Alfonso
|
| AP exam priority queue | 31 Jan 2005 16:48 GMT | 2 |
This relates to the implementation of the priority queue for the AP computer science exam in Java. How do I implement a priority queue using linked lists. When an object is added using the enqueue method, is it then inserted into the linked list in ascending/descending order?
|
| Interface declaring equals(Object)? | 31 Jan 2005 16:06 GMT | 7 |
I can't find a standard API interface which just declares equals(Object) and hashCode(), which are the minimum implementation for any object used as a key in a map. Have I missed something? Wouldn't this be a useful thing to have?
|
| What's the diff PrintWriter vs. OutputStreamWriter ? | 31 Jan 2005 15:10 GMT | 5 |
What is the difference bertween the following three file writing declarations: PrintWriter out = new PrintWriter(new FileOutputStream(....)); vs. OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(....));
|
| Cross-browser applet tags? | 31 Jan 2005 12:28 GMT | 2 |
Can anyone point me to a resource about what HTML tags to use for applets to make it load properly in all recent browsers? I tried <applet> and HTMLConverter which gave me <object>...<embed>, but the first didn't work for IE with Microsoft JVM, and the second forced some
|
| Java programming tutorials and sites | 31 Jan 2005 07:59 GMT | 3 |
Can someone point me to sites which provide tutorials on Java programming? Just like we have VBCode.com is/are there any similar sites which concentrate on Java beginners? Thanks in advance!
|
| include another xml in web.xml | 31 Jan 2005 01:37 GMT | 1 |
Hi, I am writing a servlet using the MVC mode. I have a lot configuration parameters for the servlet. I am thinking about put them as "ininParamater" in "web.xml". I am wondering if I can put all my parameters in a seperate xml and include it in my web.xml.
|
| Calling the shell from within a class | 30 Jan 2005 18:45 GMT | 2 |
I'm working on oracle 10g on windows XP Pro and I need to sequentially run four different programs to get a database up and to connect to it. I thought maybe I can compile a Java executable. I managed it with a jar manifest.
|
| Receive a value from a void method | 30 Jan 2005 16:31 GMT | 8 |
When I create an object like : TextListener topicListener = new TextListener() ; I implement a void method (MessageListener) as : public class TextListener implements MessageListener {
|
| difficulty setting toString() | 29 Jan 2005 12:12 GMT | 3 |
Why is Monster.toString() returning @11b86e7 instead of 0? Monster.setToString() is supposed to take a String as a parameter, whose value is assigned to "name," which toString() should return. It's unclear to
|
| objectA gives objectB to objectC | 29 Jan 2005 10:38 GMT | 17 |
given that the class Sword is in an entirely different package, Weapons.jar, for which the source code is unavailable, can one monster give an instance of Sword to a second monster instance? something like:
|
| textarea display question | 29 Jan 2005 08:33 GMT | 1 |
im writing an applet with text area built in it My question is: how do i capture what is input from the textfield and display it in the textarea field? import java.awt.*;
|
| Program Help!!!!!!!!!!!! | 29 Jan 2005 01:43 GMT | 14 |
I'm new to Java programming. I have a program due for class next week and I'm having some difficulties. I've done a little programming before, but not very good at it! LOL One of my biggest problems (and there are many!) is that I'm not
|
| Class.forName() - 101 | 28 Jan 2005 21:51 GMT | 6 |
I going thru a book on JSP. In this example code below "forName" is used .... why? try { Class.forName("oracle.jdbc.driver.OracleDriver");
|
| Easiest way to create a string with n times character 'x'? | 28 Jan 2005 17:24 GMT | 15 |
Assume I want to create a string of length n which contains n times the character 'x'. How do I implement this the easiest way? n could vary from function time to time. Ok. I could code char mychar = 'x';
|