As an engineer in Java Development, the jar packages required for Java applications must be familiar. In particular, there is a need to build a development environment, the demand for various jar packages will be very large.
How to quickly find the jar Package You want is a challenge for a lot of Java engineers.
Words do not say much, the following method is I inadvertently found, special share out (http://www.devexception.com/j2se/545902.htm), I hope to help you.
For example, you want to find the jar bag:commons-io-2.4.jar You can go to the corresponding official website to find, but you are not all jars know its official website,
or its official website does not necessarily provide the corresponding jar download service. Here is a common approach, where the vast majority of jars can be found and downloaded.
This place is Maven 's jar repository.
First step: Open on the Web (http://www.mvnrepository.com/)
Step two: Fill in the ioin the search box in the header, then click the search button to go to the searching list page.
Step three: Here the first one is the jarWe are looking for, click the Commons IO link to enter The list of Commons-io versions.
Fourth Step: Here we choose 2.4, directly click to enter.
There is a download link for the jar package (Download (jar)),Maven 's pom File Filling method , as well as introducing The package inside the jar .
Fifth step: Click on the link (Download (JAR)) to download.
Note: Commons-io-2.4.jar the name of this jar has a certain regularity Commons is Group,io is artifact,2.4 is versionb
Other jars will also have these rules, according to the law to find artifact, and then do the search will achieve a multiplier effect.
Java jar Package Query Download method