I have on simple question! Is there any difference between use one single or multiple jar on performance?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
*.jarfiles are just a lot of*.classfiles compressed into one. Kind of like if you archive a lot of compiled java classes into a*.zipfile. There won’t be any extra lag in using multiplejars, except for maybe the extra time required for the java runtime to locate, open and read each separatejarfile.So using multiple jars or just one jar file won’t greatly affect the runtime performance, but it may slow down the start up time. Especially for applets, where the jars need to be downloaded first.