TextPad + Java Help

Associate
Joined
21 Nov 2006
Posts
716
Location
Dublin
Ok so we use TextPad in college so I want to use that at home aswell.
I've downloaded and installed Java Runtime Environment 6 update 21, and also Java SE Development Kit 6 update 21.

Then downloaded and installed TextPad 5.3.1 but when I go into TextPad there's no external tools for Compile Java, Run Java and there's supposed to be a third one that I can't remember.

Googled the problem and everywhere says it should show "add java sdk tools" under Configure --> Preferences --> Tools --> Add but there's only Program... DOS Command... Online Help File... Menu Separator.

Anybody have any idea how to get this working?? :confused:
 
Not sure but i think you have to download plug-ins etc for textpad, there will be a java compiler pugin or something like that.
 
Use NetBeans!
Or at a push Eclipse.

TextPad is a plain text editor, it does no syntax checking, auto completion and you cannot debug your code properly.
Also you have to pay for it!
As a text editor its the best there is, as an IDE there are a hundred better alternatives.
 
you need to compile and run it in command prompt if your using a tetx editor.

first browse to the dir where the java file is, then compile using: "javac example.java" and then run using "java example.java"

Easier to just use an IDE, I recommend JCreator.
 
ok I decided to give NetBeans a try and was getting on grand until I had to use the Keyboard.class.

e.g.
Code:
num = Keyboard.readInt();

keyboarderror.JPG


Anybody know how I can get this working with NetBeans?
Tried adding it to Libraries but still nothing :confused: Maybe I'm doing it wrong?

Have to use Keyboard.class as well, because it's for college.

*cue being embarrassed for missing something simple :o *
 
Back
Top Bottom