Membuat JAR Archive
Untuk mendeploy file java / membuat file .jar, caranya:
1. Sediakan file java yang berekstensikan .java.
2. Setelah itu, compile program tersebut dengan perintah javac namaprogram. Untuk lebih jelasnya klik link ini.
Free download Software for PC, Tips & Trick, and Tutor
Untuk mendeploy file java / membuat file .jar, caranya:
1. Sediakan file java yang berekstensikan .java.
2. Setelah itu, compile program tersebut dengan perintah javac namaprogram. Untuk lebih jelasnya klik link ini.
Manifest File di Java digunakan sebagai informasi identitas aplikasi dalam sebuah archive, terutama Java Archive (JAR). Manifest File merupakan file dengan format text yang berisi informasi dari aplikasi yang akan didistribusikan dalam JAR. Manifest akan disimpan dalam file dengan nama MANIFEST.MF dalam direktori META-INF dalam file JAR tersebut.
@ECHO OFF REM QBFC Project Options Begin REM HasVersionInfo: Yes REM Companyname: OneWay Corp. REM Productname: 1Y0004 REM Filedescription: For Compile Java File REM Copyrights: Copyright (c) 2011 REM Trademarks: OneWay Corp. (r) REM Originalname: JAVA Compiler.exe REM Comments: Advanced User Only REM Productversion: 1. 0. 0. 0 REM Fileversion: 0. 0. 0. 1 REM Internalname: REM QBFC Project Options End title JAVA Compiler by OneWay if not "%6"=="" goto HELP if not "%5"=="" goto FIVE if not "%4"=="" goto FOUR if not "%3"=="" goto THREE if not "%2"=="" goto TWO if not "%1"=="" goto ONE :HELP echo Drag a Java file and drop it on this batch file echo to compile, deploy, or running that program echo Max. 5 File to process at same time. goto END :ONE CLS echo ************************************************************** echo Processing one file .java . . . echo ************************************************************** CLS echo Compiling File . . . cd /d "%~dp1" echo Note: echo ************************************************************** javac %~nx1 echo ************************************************************** echo Testing program . . . echo Debug: echo ************************************************************** echo. java %~n1 echo. echo ************************************************************** goto END :TWO CLS echo ************************************************************** echo Processing two file .java . . . echo ************************************************************** CLS echo Compiling File . . . cd /d "%~dp1" echo Note: echo ************************************************************** javac %~nx1 echo ************************************************************** echo Testing program . . . echo Debug: echo ************************************************************** echo. java %~n1 echo. echo ************************************************************** goto END :THREE CLS echo ************************************************************** echo Processing rhree file .java . . . echo ************************************************************** CLS echo Compiling File . . . cd /d "%~dp1" echo Note: echo ************************************************************** javac %~nx1 echo ************************************************************** echo Testing program . . . echo Debug: echo ************************************************************** echo. java %~n1 echo. echo ************************************************************** goto END :FOUR CLS echo ************************************************************** echo Processing four file .java . . . echo ************************************************************** CLS echo Compiling File . . . cd /d "%~dp1" echo Note: echo ************************************************************** javac %~nx1 echo ************************************************************** echo Testing program . . . echo Debug: echo ************************************************************** echo. java %~n1 echo. echo ************************************************************** goto END :FIVE CLS echo ************************************************************** echo Processing five file .java . . . echo ************************************************************** CLS echo Compiling File . . . cd /d "%~dp1" echo Note: echo ************************************************************** javac %~nx1 echo ************************************************************** echo Testing program . . . echo Debug: echo ************************************************************** echo. java %~n1 echo. echo ************************************************************** :END PAUSE CLS