Pages

Melakukan Path Pada Java

Secara default, untuk melakukan compile dan run java, kita harus menyimpan file di C:\Program Files\Java\jdk1.7.0\bin \. tergantung dimana di folder mana menginstall java, tapi yang pasti harus di dalam folder bin.

kendalanya adalah, jika kita menginstall java, di drive C: dan tiba suatu saat kita tidak bisa login dan harus install ulang, agar tidak ribet kita harus format drive C: data kita bakalan hilang semua serta source code yang sudah dibuat.

Kali ini saya akan memberi tips agar kita tidak perlu menyimpan file kita di di folder bin, bahkan kita bisa pindah drive, yaitu dengan cara melakukan path pada java yang kita install, sehingga kita bisa melakukan compile dan running dimana saja:


Berikut cara melakukan path pada java:
  1.  Setelah java di install, maka copy alamat folder java.exe dan javac.exe berada. secara default berada pada C:\Program Files\Java\jdk1.7.0\bin
  2. Klik kanan my computer - properties - Advanced system setting - Environment variable - cari path dalam kotak system variable. (perhatikan system variabel, pengalaman ikut jadi trainer di workshop banyak yang tidak memperhatikan system variable ini dan membuat path di user variable for xxxx)
  3. Perhatikan gambar berikut
  4. Ketikkan tanda titik koma (;) di belakang variables value, 
  5. Paste alamat folder java yang dicopy tadi (sekedar mengningatkan C:\Program Files\Java\jdk1.7.0\bin) sehingga yang anda tambahkan ke variable value tersebut ;C:\Program Files\Java\jdk1.7.0\bin (perhatikan titik koma yang di depan)
  6.  Untuk melakukan pengecekan, silahkan buka command prompt (windows + r), lalu ketikkan cmd dan enter
  7. Setelah muncul layar hitam, ketikkan javac, jika muncul tulisan-tulisan maka anda sudah berhasil melakukan path. kurang lebih tulisan yang muncul seperti berikut:
    C:\Users\jo>javac
    Usage: javac
    where possible options include:
      -g                         Generate all debugging info
      -g:none                    Generate no debugging info
      -g:{lines,vars,source}     Generate only some debugging info
      -nowarn                    Generate no warnings
      -verbose                   Output messages about what the compiler is doing
      -deprecation               Output source locations where deprecated APIs are u
    sed
      -classpath           Specify where to find user class files and annotati
    on processors
      -cp                  Specify where to find user class files and annotati
    on processors
      -sourcepath          Specify where to find input source files
      -bootclasspath       Override location of bootstrap class files
      -extdirs             Override location of installed extensions
      -endorseddirs        Override location of endorsed standards path
      -proc:{none,only}          Control whether annotation processing and/or compil
    ation is done.
      -processor [,,...] Names of the annotation processors
    to run; bypasses default discovery process
      -processorpath       Specify where to find annotation processors
      -d              Specify where to place generated class files
      -s              Specify where to place generated source files
      -implicit:{none,class}     Specify whether or not to generate class files for
    implicitly referenced files
      -encoding        Specify character encoding used by source files
      -source           Provide source compatibility with specified release

      -target           Generate class files for specific VM version
      -version                   Version information
      -help                      Print a synopsis of standard options
      -Akey[=value]              Options to pass to annotation processors
      -X                         Print a synopsis of nonstandard options
      -J                   Pass directly to the runtime system
      -Werror                    Terminate compilation if warnings occur
      @                Read options and filenames from file
Jhohannes H Purba Coding Sederhana June 02, 2011

No comments:

Post a Comment