Forum: Java Dec 15th, 2008 |
| Replies: 9 Views: 578 alright, so apparently eclipse uses the project's root folder as the working directory by default, so I made the path local to that and it worked. Many thanks.
Oh, and I'm making Pong.
edit:... |
Forum: Java Dec 14th, 2008 |
| Replies: 9 Views: 578 Hmm... apparently Java isn't recognizing the file. But the file is in the same directory as the .java file.
$ ls ~/workspace/Pong/src/
Ball.java KeyboardListener.java Main.java Paddle.java ... |
Forum: Java Dec 14th, 2008 |
| Replies: 9 Views: 578 Sorry about the lines, here's the original file:
import java.awt.*;
public abstract class Sprite
{
private Image m_image;
private Point m_position;
public Sprite(int x, int y) |
Forum: Java Dec 14th, 2008 |
| Replies: 9 Views: 578 I'm trying to load a bitmap into an Image object using the following code:
System.out.println("Point A");
System.out.println("Point B");
m_image =... |
Forum: Java Jul 3rd, 2008 |
| Replies: 3 Views: 491 Hey,
I'm starting out Java development, and I want to know exactly what I need to download. I believe I need to download the JVM, but what else? And I know there are IDEs like NetBeans where you... |
Forum: Java May 27th, 2008 |
| Replies: 11 Views: 4,626 I always thought C/C++ meant C or C++... |
Forum: Java May 16th, 2008 |
| Replies: 11 Views: 4,626 Hey,
I'm a C++ programmer, but I'm beginning to learn Java, and from what I see so far the two languages are very similar. The main difference I hear is that C++ has pointers and Java doesn't, but... |