| Thread | Last Post | Replies |
|
| problem with SQL Server money type and java double | 05 Feb 2004 21:31 GMT | 3 |
we have a java application that inserts a value (1.4 as a double) into a SQL Server table column (via an sp) that is of type money. no problem there. another part of the application retreives that information (via an sp) as a double. the resultant number is (1.39).
|
| Implementation for abstract method | 05 Feb 2004 17:07 GMT | 6 |
A pure virtual function can have implementation in C++. Can an abstract method have implementation in Java?
|
| NoSuchMethodError: ...<init> | 05 Feb 2004 16:24 GMT | 2 |
What does it mean when I get a stack trace like: -------------------------------------- Roy-Smiths-Computer:scripts$ mysql < ../../sql/schema.sql; java -classpath $CLASSPATH:build TestAll .hello
|
| Starting a JFrame | 05 Feb 2004 15:59 GMT | 2 |
I have a small program which I want to attach a GUI to. At the moment, I have Launcher.java and MorvenGUI.java The Launcher.java parses command line arguements, and calls the GUI. Eventually it will do a lot more, but not just now.
|
| How to usee double Buffering to eliminate flicker | 05 Feb 2004 13:39 GMT | 13 |
I have an applet that flickers on the page. How do I eliminate the flicker? I don't understand how to implement the double buffering code in the applet.
|
| Equal/Unequal Strings | 05 Feb 2004 12:13 GMT | 5 |
When I execute below java program, the result produced is s1==s2 s1!=s3 s1!=s4
|
| Site crashes on Empty Applet..???? | 05 Feb 2004 09:39 GMT | 3 |
URL: http://valsignalandet.com Class located at: http://valsignalandet.com/class/ParseNews.class Some background information: A week or so ago my website started to crash constantly and load slowly for others, which I traced it to be the
|
| Interfaces vs. Abstract. | 05 Feb 2004 08:28 GMT | 1 |
I have googled around a bit about this one and consulted my various Java tomes on the differences between abstract classes and interfaces. They seem to be similar ideas *_BUT_* interfaces have no method code (i.e. only abstract methods), just signatures and final static identifiers.
|
| Converting long int to date | 05 Feb 2004 05:00 GMT | 3 |
I need to convert the long int returned from file.lastmodified() to a calendar date, preferably following the RFC1945-specification for http Date-headers (ie. Sun, 06 Nov 1994 08:49:37 GMT). Any suggestions how this can be neatly done?
|
| How to write bandwidth monitor for ethernet adapter? | 05 Feb 2004 01:54 GMT | 1 |
can anyone suggest a way of writing a network monitoring application that reads how many packets are sent/received? I need to use a bandwidth monitoring solution so that I know how much bandwidth my application is using on my 10/100 network.
|
| Compile Java Program | 04 Feb 2004 23:43 GMT | 9 |
I recently bought Sam's Teach yourself Java in 21 days. It said to download the SDK which i did. Version 1.3. Then it told me that in order to compile the Test program that i wrote that, I was to open the Ms-Dos command prompt and to type in Javac Ellsworth.java in the file that ...
|
| Java for really thick people? | 04 Feb 2004 22:27 GMT | 7 |
Hi I'm doing a module of Java at Uni and I'm finding the Learning Curve too steep for me. I just don't have what it takes to do programming but I do have a coursework to hand in tomorrow and an exam to pass. Does anyone have any recommended sites that can help the "underachieving
|
| AWTEventMulticast | 04 Feb 2004 13:49 GMT | 1 |
... what is it for? After reading the javadocs I'm a bit confused. It says: public myComponent extends Component {
|
| Applet cookie problem | 04 Feb 2004 12:59 GMT | 2 |
I am having a problem writing/retrieving cookies from an applet. I am using code like this to write cookies via the browser: JSObject myBrowser = JSObject.getWindow( this ); JSObject myDocument = (JSObject)myBrowser.getMember( "document" );
|
| Stop InputBox prompt loop? | 04 Feb 2004 11:15 GMT | 1 |
I have a program that prompts a user to input a String value. The program then does stuff with this String then prompts for another String. However I want the loop/program to halt when the user enters "stop!". I have attempted this with:
|