Thread: My Client compiler doesn't work.

Results 1 to 5 of 5
  1. #1 My Client compiler doesn't work. 
    Banned
    Join Date
    Jul 2010
    Posts
    9
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Hello, when im trying to compile my Client (Galkon i think)
    I get this error:

    Code:
    javac is not recognized as an internal or external command,
    executable program or batch file.
    Press any key to continue ...
    my compiler code:

    Code:
    @echo off
    title Compiling...
    cd src
    javac -cp . -d ../bin/ ./*java
    pause
    Reply With Quote  
     

  2. #2  
    Banned
    Join Date
    Jul 2010
    Posts
    9
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Bring
    Up
    My
    Post
    Reply With Quote  
     

  3. #3  
    Respected Donater

    Mario's Avatar
    Join Date
    Sep 2007
    Age
    30
    Posts
    1,255
    Thanks given
    32
    Thanks received
    15
    Rep Power
    778
    Replace Javac with "C:\Program Files\Java\jdk1.6.0_10\bin\javac.exe"

    Code:
    @echo off
    title Compiling...
    cd src
    "C:\Program Files\Java\jdk1.6.0_10\bin\javac.exe"" -cp . -d ../bin/ ./*java
    pause
    [rsimg]1042[/rsimg][rsimg]1044[/rsimg][rsimg]1046[/rsimg][rsimg]1038[/rsimg][rsimg]1048[/rsimg][rsimg]1040[/rsimg]Mario[rsimg]1040[/rsimg][rsimg]1048[/rsimg][rsimg]1038[/rsimg][rsimg]1046[/rsimg][rsimg]1044[/rsimg][rsimg]1042[/rsimg]

    Reply With Quote  
     

  4. #4  
    Mops the streets
    Streetwave's Avatar
    Join Date
    Mar 2009
    Age
    29
    Posts
    3,445
    Thanks given
    481
    Thanks received
    1,114
    Rep Power
    5000
    And look if your java version is correct. Install JDK correctly.

    Spoiler for Love:







    Reply With Quote  
     

  5. #5  
    Registered Member Stapler's Avatar
    Join Date
    Jul 2009
    Posts
    250
    Thanks given
    4
    Thanks received
    1
    Rep Power
    18
    Code:
    @echo off
    color 09
    title Compiler
    "C:\Program Files\Java\jdk1.6.0_20\bin\javac.exe" -cp . *.java
    pause

    OWNER OF PERFECTIONSCAPE AND REFLECTION-X
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •