Forum: Java
Dec 6th, 2004, 4:01 AM
|
|
Replies: 9
Views: 327
Well yes you're absolutely correct of course...
Well yes you're absolutely correct of course regarding Learning Java.
I thought I'd better emphasise that it's not a good book to learn from despite the title (and the presigious o'reilly...
|
Forum: Java
Nov 30th, 2004, 7:08 PM
|
|
Replies: 5
Views: 249
|
Forum: Java
Nov 23rd, 2004, 6:50 PM
|
|
Replies: 4
Views: 274
|
Forum: Java
Nov 23rd, 2004, 6:18 PM
|
|
Replies: 4
Views: 274
I have encountered this before, but ended up...
I have encountered this before, but ended up using a different solution to the problem I was working on...
but out of interest - is there a way to read in the output of the command into a...
|
Forum: Java
Nov 23rd, 2004, 6:05 PM
|
|
Replies: 8
Views: 295
|
Forum: Java
Nov 23rd, 2004, 4:55 PM
|
|
Replies: 8
Views: 295
argh!!!!
what a nightmare - I cut and pasted...
argh!!!!
what a nightmare - I cut and pasted that and now i have to go through indenting it... and thanks to pythons lack of braces and all the nesting it's not always easy to tell where to...
|
Forum: Java
Nov 23rd, 2004, 4:43 PM
|
|
Replies: 3
Views: 205
this modified version works for me...
I didn't...
this modified version works for me...
I didn't change any of the actual structure (much) but I was seriously tempted to in places - particularly with regard to error handling (by the way - where does...
|
Forum: Java
Nov 23rd, 2004, 4:26 PM
|
|
Replies: 3
Views: 205
|
Forum: Java
Nov 22nd, 2004, 10:58 PM
|
|
Replies: 8
Views: 295
|
Forum: Java
Nov 22nd, 2004, 4:41 PM
|
|
Replies: 8
Views: 295
|
Forum: Java
Nov 21st, 2004, 9:17 PM
|
|
Replies: 8
Views: 274
|
Forum: Java
Nov 21st, 2004, 8:23 PM
|
|
Replies: 9
Views: 327
I can recommend *against* the book 'Learning...
I can recommend *against* the book 'Learning Java' - put out by O'Reilly.
I bought it thinking it'd be as good as 'Learning Perl'.
it is NO GOOD as a book for learning the language - especially if...
|
Forum: Java
Nov 21st, 2004, 8:00 PM
|
|
Replies: 2
Views: 207
alternatively, just recast it to a...
alternatively, just recast it to a string:
LineString[bob] = (String)v.elementAt( bob );
since you already know that the vector contains strings (albeit ones that have had their cast widened to...
|
Forum: Java
Nov 21st, 2004, 7:51 PM
|
|
Replies: 3
Views: 212
pay careful attention to Sykkn's example.
note...
pay careful attention to Sykkn's example.
note that he is creating a new Date instance each time he wants to get the curent time...
ie he is NOT doing:
Date date = new Date();
long timeStart =...
|
Forum: Java
Nov 21st, 2004, 7:37 PM
|
|
Replies: 8
Views: 295
Hi there,
I have been writing a program to plot...
Hi there,
I have been writing a program to plot mathematical functions.
I have already written the output classes (eg Plotter, which extends JPanel) and which allows arbitrary resizing of the domain...
|
Forum: Java
Nov 21st, 2004, 7:30 PM
|
|
Replies: 10
Views: 302
|