WAY TO INCLUDE EXTERNAL JAR FILES(LIB)INSIDE PROJECT JAR
WAY TO INCLUDE EXTERNAL JAR FILES(LIB)IN PROJECT JAR when we create a project using net beans IDE the jar will be created automatically inside a dist folder which will be located inside the project folder itself .But this JAR will not contain the external jars which you have added for your projects.(jars inside the library folder). You can create a project jar that includes the external jars using the following step: 1.Go to the project folder which you have created using netbeans IDE. 2.create a new folder named ' NewDist' inside the project folder directory. 3.create a file named ' JarMaker.bat ' in the folder which you craeted( NewDist ). 4.copy the below code in the file. Code: ------- @echo off echo * --------------------------------------------...