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:
- 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
- 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)
- Perhatikan gambar berikut
- Ketikkan tanda titik koma (;) di belakang variables value,
- 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)
- Untuk melakukan pengecekan, silahkan buka command prompt (windows + r), lalu ketikkan cmd dan enter
- 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
-classpathSpecify where to find user class files and annotati
on processors
-cpSpecify where to find user class files and annotati
on processors
-sourcepathSpecify where to find input source files
-bootclasspathOverride location of bootstrap class files
-extdirsOverride location of installed extensions
-endorseddirsOverride 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
-processorpathSpecify where to find annotation processors
-dSpecify where to place generated class files
-sSpecify where to place generated source files
-implicit:{none,class} Specify whether or not to generate class files for
implicitly referenced files
-encodingSpecify character encoding used by source files
-sourceProvide source compatibility with specified release
-targetGenerate 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
-JPass directly to the runtime system
-Werror Terminate compilation if warnings occur
@Read options and filenames from file
No comments:
Post a Comment