| Thread | Last Post | Replies |
|
| returning type | 27 Mar 2005 20:34 GMT | 5 |
which is the recommended way? 1) private Action createExitAction() { return new ExitAction();
|
| Better Approach to Code? | 27 Mar 2005 15:55 GMT | 2 |
Which is the preferred way to write XML files? I have old code where there is a writeXML(Writer w) method in my class hierarchy that loops from the top down through each class. Each class has this method.
|
| config file processing | 27 Mar 2005 15:06 GMT | 1 |
what are the preferred means of dealing with slightly complex config files these days. by slight complex, i mean the config file may not be a simple name/value pair format. what about config file for applets? i imagine these must be read and
|
| blocking I/O with javax.xml.parsers.DocumentBuilder.parse() and javax.xml.transform.Transformer.transform() | 27 Mar 2005 07:57 GMT | 1 |
Does anyone out there know if these methods do blocking I/O? Thanks, Jason Mazzotta
|
| A Java-based video conference | 27 Mar 2005 05:33 GMT | 2 |
I want to establish a video conference system by Java. Is there previous efforts on the similar tasks? What kind of packages or libraries should I use? My goal is to establish a enterprise-wide client/server architecture
|
| It's still about the NPE. | 27 Mar 2005 02:38 GMT | 5 |
CAN someone help me with this problem of always getting the NPE whenever I try to view only this particular servlet image in my browser. Here [AGAIN] I submit the code for this servlet, if someone didn't see it the other day when I initially posted this :
|
| ServletContext.setAttribute and ServletContext.getAttribute() | 27 Mar 2005 01:39 GMT | 2 |
If I put an attribute into "application" scope with the ServletContext.setAttribute() method, and multiple objects call ServletContext.getAttribute(), what happens? Does getAttribute return multiple references, copies of the same object, or does it simply conk
|
| Should this work? | 26 Mar 2005 22:40 GMT | 10 |
This gives the expected result "AB" if the class is declared as B b or cast to B, but when it is declared "A b" it returns "AA". Should it? public class A {} public class B extends A {}
|
| How to transfer audio/voice over Java | 26 Mar 2005 18:50 GMT | 1 |
How to do? Thx! Regards, Sam Hwang
|
| ashamed to ask... | 26 Mar 2005 17:12 GMT | 4 |
I'm a little ashamed to ask this, but... I used to do some Java programming, but it seems I forgot everything. I'm experimenting with a very simple program:
|
| How to use XPath to get list of nodes from XML DOM? | 26 Mar 2005 15:09 GMT | 1 |
I can see how to get a list of nodes based on the name of the tag using the method Document.getElementsByTagName. But is there anyway to get a list based on an arbitrary XPath expression? For instance, if I wanted a list of Nodes where an attribute was a particular value, how ...
|
| Accessing Objects from remote classes... | 26 Mar 2005 12:04 GMT | 1 |
Lets say i have this scenerio class A { public B objB; //B is my own class main() {
|
| removing bluish color along the edges of combobox | 26 Mar 2005 09:13 GMT | 14 |
setting setBackground(Color.white) on a combobox succeeds. however, there is bluish color along the edges. setForeground doesn't help. any suggestions? thanks in advance
|
| RMI, Firewall and big problem | 26 Mar 2005 08:48 GMT | 1 |
I write a simple client-server programm with RMI package. This program not work with a firewall between client and server. The firewall port: 1099 and 14000 to 15000 is open. The java.policy file is:
|
| Why does java.rmi.Naming not implement interface java.rmi.Registry? | 26 Mar 2005 08:45 GMT | 1 |
The class Naming (from package java.rmi) provides the methods bind, list, lookup etc. Those methods are defined in the interface Registry (from package java.rmi). But according to the SDK API docs Naming does not implement that interface. Is that true or a misprint? If it is
|