1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Compile help for moparscape!!@read@!!

Discussion in 'Windows - Games' started by kyleab, Apr 17, 2007.

  1. kyleab

    kyleab Member

    Joined:
    Apr 17, 2007
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    11
    Hi. I just did a few things for my pimpscape source and when i was done i checked to see if anything happened..and it didnt. so when i clik compile i press any key and it automaticly goes away hrees what it ses.

    'javac' is not recognized as an internal or external command,
    operable program or batch file.
    Press any key to continue . . .

    i press a key and it just goes away and helps nothing :( plz help
     
  2. Ripper

    Ripper Active member

    Joined:
    Feb 20, 2006
    Messages:
    4,697
    Likes Received:
    13
    Trophy Points:
    68
    By the sounds of it it seems you must have edited some of the source code wrong, as the file is now trying to launch a non exsistent process/application.

    Go back and check what you changed. If you have an oringal copy of the source, cross reference it against that.
     
  3. janrocks

    janrocks Guest

    Your PATH env.var. does not include the path to javac.exe

    You can either explicitly name javac.exe

    C:\foo\bar\> C:\j2sdk1.4.2_01\bin\javac Filename.java

    or add the path and just use javac

    C:\foo\bar\> set PATH=%PATH%;C:\j2sdk1.4.2_01\bin
    C:\foo\bar\> javac Filename.java

    Replace C:\j2sdk1.whatever\it\is. with the actual path to bin\javac.exe
     
    Last edited by a moderator: Apr 18, 2007
  4. Nephilim

    Nephilim Moderator Staff Member

    Joined:
    Feb 13, 2003
    Messages:
    13,161
    Likes Received:
    1
    Trophy Points:
    116

Share This Page