| Thread | Last Post | Replies |
|
| Count my answers? | 12 Apr 2004 23:22 GMT | 2 |
I?ve made a quiz game and now I want to count the incorrect and the correct answers, how can I do that? I have an idea, but I would like to hear what you think. Greetings
|
| (newbe) NoClassDefFoundError complaints | 12 Apr 2004 23:20 GMT | 8 |
I just installed javaSDK 1.5.0 beta on WinXP. And I set the Path right. So now I'm able to invoke javac from any place. Nu I wrote this simple hello-world prog (test.java). I compiled it with
|
| about readLine & println on one line - Help plz | 12 Apr 2004 22:45 GMT | 2 |
i am writing a DOS based Java Program. i want to print(my question) and read a value on same line. Example: System.out.println("\nEnter any Number : " );
|
| A timed event. | 12 Apr 2004 19:54 GMT | 3 |
I have created some code that manipulated some figures but I would like the code to run evey 10 seconds. I know this is easy for some but I am new to Java. Please help.
|
| conditional branching from returned values of another class | 12 Apr 2004 05:49 GMT | 2 |
I have several classes (lock and key). I am trying to branch on the outcome of boolean value of isOpen. But I keep on getting null exception error when I try to conditional test the isOpen status. What is wrong; Any information is greatly appreciated!
|
| Read/Write simple XML | 11 Apr 2004 20:29 GMT | 2 |
I have the following very simple XML file: <settings> <john>10</john> <paul>10</paul>
|
| problems with precission in java | 11 Apr 2004 11:41 GMT | 7 |
I need work wiht 30 decimals in a double, but when I try to store : 44*279^7+97*279^5+104*279^4+99*279^3+110*279^2+97*279+77 when a^b is Math.pow(a,b). Exemple 2^2 is 2*2=4 well if I execute this in the calc of windows I get 5.790211750705701434e18
|
| quick newbie question - portlets and applets | 11 Apr 2004 05:33 GMT | 2 |
Could someone give me a brief explanation of the difference between portlets and applets? Thanks! -Eric
|
| Newbie questions - Arrays and methods | 11 Apr 2004 05:19 GMT | 5 |
Hello again, First, thanx for reading his... I'm taking my first Java class and up 'til a week ago, I've understood almost everything. We started working with arrays and methods and now I'm flabbergasted - especially with
|
| Simple Problem | 11 Apr 2004 02:30 GMT | 11 |
Need help with the following problem. This is ex 6.31 from Deitel and Deitel - Java How to Program 4/e [ Not a homework problem , I promise] This is the problem: Create 2 integers and display the following question in the status bar:
|
| Applications vs. Applets for beginning Java student | 10 Apr 2004 19:25 GMT | 2 |
I am a beginning Java student( < 6 months) and I wanted to ask what should I be concentrating on after learning some of the fundamentals of the language. Since almost everything today is graphical
|
| Newbie MouseListener Problem | 10 Apr 2004 02:47 GMT | 1 |
Just started taking a class in java, and finding it pretty interesting, but very difficult. I'm trying to write some code that will allow me to move a counter on a chessboard. Got the board and counter setup (not very well), but the counter won't move. Thanks in advance for any help ...
|
| Get # of lines in text file | 10 Apr 2004 00:33 GMT | 5 |
How do I get the number of lines in a text file?
|
| getting file from jar | 10 Apr 2004 00:33 GMT | 2 |
I'm trying to read a file from the jar file my app is packaged in but i cant get it to read the parent directory. It works when running just from the class files - ie not packaged up. I'm doing the following:
|
| Parameter-passing to another class | 09 Apr 2004 22:52 GMT | 9 |
I have to classes, classA and classB. I want classA to 'call' classB and pass a parameter (String). I was thinking I could do something like this (within classA): classB B = new classB (parameter);
|