| Thread | Last Post | Replies |
|
| Constructor Trouble | 10 Jan 2007 11:45 GMT | 6 |
Hello. I'm trying to implement a program that generates the game tree for this game, http://www.everything2.org/index.pl?node_id=1314953&lastnode_id=1140332 .
|
| Processor overloaded | 10 Jan 2007 10:24 GMT | 3 |
Hei I'm trying to create a clock from scratch. If I run this code, the processor overloads. I think I know why, but I'm not shure how to avoid this.I didn't want
|
| stay out of my mailbox | 10 Jan 2007 04:35 GMT | 1 |
no more please jim@thebottlemilwaukee.com
|
| [File]Reading a file | 09 Jan 2007 23:33 GMT | 3 |
I am puzzled as the prog does not fin the file ; this is the code : JFileChooser chooser = new JFileChooser("/media/USER_data/dmoyne_data/GENEALOGIE_data/GenJ_data/GenJ_data/actes/Menotey/tmp"); int FileSelectorIntValue = chooser.showOpenDialog(null);
|
| reading a large text file that is part of a very tight loop | 09 Jan 2007 19:18 GMT | 7 |
I have a algorithm which loops over a set of 100 million sets of 3 values in a tight loop. eg; while(1){ //do forever until terminated BufferedReader in = new BufferedReader(
|
| No Application in Java 6 JRE Web Start cache viewer | 09 Jan 2007 13:48 GMT | 1 |
windows xp pro platform... I have an app which uses WebStart. On upgrade to Java 6, on one system I can see it in the javaws -viewer cache viewer. On another system, there's no way I can
|
| Need a much simpler NetBeans tutorial! | 09 Jan 2007 01:24 GMT | 2 |
I am referring to http://java.sun.com/docs/books/tutorial/javabeans/nb/index.html and I'm sorry but I can't follow any of this! I have NetBeans IDE 5.5 and I am trying to learn how to write beans
|
| resetting a JSpinner | 08 Jan 2007 20:02 GMT | 1 |
never had to do this before until today....... A jspinner which spins between page 1 & n of a document. once my jspiner is on the screen and i want to display another document with more or less pages than my last , how do i re-set my jspinner "upper" limit
|
| Why is this assertion being triggered? | 08 Jan 2007 19:34 GMT | 6 |
I have the following line in my code, which hits on the assertion and causes an error... assert !Double.isNaN(tRating) : "!Double.isNaN(tRating), tRating=" + tRating;
|
| IO exceptions problem | 08 Jan 2007 10:32 GMT | 3 |
I have an applet class I'm using as a user interface form which adds labels, textboxes etc, validates the input and handles IO exceptions. It works fine until I try adding the IO exceptions. public class MyTestInterface extends Applet implements ActionListener {
|
| casting | 07 Jan 2007 21:30 GMT | 1 |
With the following code from the Sun's Java tutorial could someone explain the line with the 'if' statement public Object findLargest(Object object1, Object object2) { Relatable obj1 = (Relatable)object1;
|
| Scanner and JTextField? | 07 Jan 2007 17:43 GMT | 1 |
I am currently using the terminal to enter commands into my "game" using reader = new Scanner(System.in); String inputLine = reader.nextLine();
|
| Missing return statement | 07 Jan 2007 17:07 GMT | 2 |
package trianglecalculation; import java.text.*; import java.io.*; import java.util.*;
|
| Simple Question....I hope | 06 Jan 2007 03:00 GMT | 8 |
How do I convert a variable of datatype object to a string? For example I have a variable item with datatype object Item, and I want to compare it to an input by the user which is a string. e.g. if(item == string)
|
| JSP/sendRedirect() problem... | 06 Jan 2007 02:56 GMT | 7 |
I have a response.sendRedirect() in a JSP, to be triggered if a param passed in request evaluates to "" or null.. however, sendRedirect is being ignored; also tried <jsp:forward..>, is also ignored.. would appreciate some help.. thank you.. code is as follows:
|