Thread: Compiler help (Javac)

Results 1 to 6 of 6
  1. #1 Compiler help (Javac) 
    spectrum
    Guest
    Hi guys,
    Could you tell me how to fix this error plz..

    Code:
    javac: file not found: .\Java\*.java
    Usage: javac <options> <source files>
    use -help for a list of possible options
    Press any key to continue . . .
    EDIT: Silly me I fixed it =)
     

  2. #2  
    pkerscape21
    Guest
    Replace the entire code with this:
    Code:
    @echo off
    title Compiler
    echo Compiling - Please wait...
    "C:/Program files/java/jdk1.6.0_6_ver/bin/javac.exe" *.java
    echo Files Compiled Succesful
    echo Thanks for using compiler.
    pause
    Replace where it say jdk1.6.0_6_yourversion example i have jdk 6 update 7 jdk1.6.0_6_07
    hope i helped
     

  3. #3  
    *Rs-Coding*
    Guest
    Quote Originally Posted by pkerscape21 View Post
    Replace the entire code with this:
    Code:
    @echo off
    title Compiler
    echo Compiling - Please wait...
    "C:/Program files/java/jdk1.6.0_6_ver/bin/javac.exe" *.java
    echo Files Compiled Succesful
    echo Thanks for using compiler.
    pause
    Replace where it say jdk1.6.0_6_yourversion example i have jdk 6 update 7 jdk1.6.0_6_07
    hope i helped
    Dont post stuff what you don't no..

    Make sure the compiler is in the server files for it to compile.
     

  4. #4  
    Derp.
    BenjaR's Avatar
    Join Date
    May 2008
    Age
    29
    Posts
    2,083
    Thanks given
    167
    Thanks received
    125
    Rep Power
    915
    Quote Originally Posted by *Rs-Coding* View Post
    Dont post stuff what you don't no..

    Make sure the compiler is in the server files for it to compile.
    Lol. OWNED
     

  5. #5  
    Registered Member
    Core's Avatar
    Join Date
    Sep 2007
    Posts
    4,194
    Thanks given
    11
    Thanks received
    393
    Rep Power
    1985
    Code:
    @echo off
    javac .*java
    pause
     

  6. #6  
    Banned

    Join Date
    Feb 2008
    Age
    29
    Posts
    998
    Thanks given
    1
    Thanks received
    11
    Rep Power
    0
    "javac: file not found: .\Java\*.java"
    Can people just not read?
    There are no files in that directory to be compiled.
     


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
  •