Jump to content
IGNORED

Thrust+ Score Decoder


Happy_Dude

Recommended Posts

I'm stoked to have written my first Java programme so I'm sharing it with everyone.

It takes a Thrust+ score and tells you what it really is.

The score is entered at the commandline

eg

java ThrustScoreDecoder 89570

 

 

I hope someone finds it useful :)

thrustscoredecoder.class.gz

thrustscoredecoder.java.gz

Link to comment
Share on other sites

thomas:

this happens when you try to start a java *source* file (.java) with java. the virtual machine will look for a class called java located in package ThrustScoreDecoder, which doesn't exist.

 

you must download the .class file and start it like this:

 

java ThrustScoreDecoder <- you mustn't enter the .class extension

Link to comment
Share on other sites

i assume you downloaded the .class file, changed to the directory where you saved the .class file and tried to start it ?

 

if so, the CLASSPATH environment variable of your system doesn't contain the current directory.

 

try something like

 

java -cp . ThrustScoreDecoder

 

or update the classpath variable permanently to contain the working directory (.)

Link to comment
Share on other sites

  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...