| Thread | Last Post | Replies |
|
| Non-blocking methods for transferring of Object | 07 May 2005 10:59 GMT | 1 |
I have designed one chatting software using non-blocking features of java. In this project I transferred data using non-blocking methods of Buffer related classes.
|
| Java is in danger | 07 May 2005 08:18 GMT | 9 |
Please take a look at this: http://jan-pajak.com/day26.htm
|
| How to use genericized Class class | 07 May 2005 07:39 GMT | 2 |
In the pre-generics era, we did: Class claz = Class.forName("Foo"); Foo foo = (Foo)(claz.newInstance()); We anticipate we can be freed from casting by generics:
|
| struts and form validation | 07 May 2005 05:36 GMT | 3 |
I have two forms that I submit both do validation, one keeps the form entries on errors one does not. The only thing that I can see that is different (maybe im doing something wrong) is that I load a bean in one and not another.
|
| Getting Date Difference in Java. | 07 May 2005 05:27 GMT | 3 |
In oracle, if I need to get the sysdate, I would do some thing like this select sysdate from dual; And if I need , the difference between sysdate and a specific date ,say "pdate" ,I would do,
|
| Getting Date Difference in Java. | 07 May 2005 05:19 GMT | 1 |
In oracle, if I need to get the sysdate, I would do some thing like this select sysdate from dual; And if I need , the difference between sysdate and a specific date ,say "pdate" ,I would do,
|
| What is the reason for putting constants in another class? | 07 May 2005 03:11 GMT | 6 |
Does anybody know the reason why the constants in javax.swing.ScrollPaneConstants are put in a separate class instead of simply putting them inside javax.swing.JScrollPane itself?
|
| Preforming functions on JFrame Close... | 07 May 2005 02:36 GMT | 2 |
ive got a JFrame and right now i have it set to frmMain.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); however i would like to run a function (cleanUp()) just before the window closes, but only when its been notified that its been closed.
|
| collection API and Null elements | 07 May 2005 00:16 GMT | 4 |
in a Set (and other Collection sub-interfaces), there are some rather silly declarations for the jdk API. for example, the Set.contains(Object) method throws NullPointerException if, "the specified element is null and this set does not support null
|
| Weird Eclipse behaviour | 06 May 2005 22:30 GMT | 1 |
Since some time i`m trying to work with java using Eclipse tool. On one of computers i`ve installed Eclipse i have some weird thing. No matter what kind of project i create (applet,form application,tomcat application) when i`m starting debugging (F11) debugger stops in classes ...
|
| Running Tomcat from a CD | 06 May 2005 21:39 GMT | 2 |
I would like to burn my web application with Tomcat into CD, and running from CD. I found Tomcat is creating a working directory at CATALINA_BASE/work/Catalina/localhost/webappX, which apparently is not allowed on CD.
|
| SOAPHeaderElement element = envelope.getHeaderByName | 06 May 2005 21:09 GMT | 1 |
Please can someone help me I'm trying to implement the above line of code but stuck as to what to put in the first parameter SOAPHeaderElement element =
|
| Does an Axis handler can act as a pivot for another Web service? | 06 May 2005 20:48 GMT | 1 |
I'm facing with this scenario: I have a Web service deployed through Axis whose performances are monitored and recorded by an Axis global handler; I would like to query remotely this handler in order to retrive these performance data; the best solution for me would be to
|
| Charset auto detector | 06 May 2005 20:16 GMT | 1 |
Do you know if there is a way to automaticly detect the charset from a bytes array ? In fact, I would like to decode a byte array, with the good charset interpretor, given that I do not know which charset was used to encode it.
|
| XML in chatting software | 06 May 2005 16:37 GMT | 1 |
Hello, I am new to XML and I want to know how can I improve my Chatting software written in Java using XML? In chatting software there is a lot of data transfer along with formatting infomation. It is suggested to me that using XML I may do it easily. How to proceed? -Sameer
|