JDK 1.5 introduces many important extensions to the Java programming,Generics are one among them. generics are simple variables to types (which will bound at compile time) also called parametrized types. In a object oriented language,there is always a need for ‘generic’ types,for which the actual type of variable known only at run time. One of […]
Generics-Java Safe Compilation
Posted in Java Deployment by admin - Feb 24 2010
Jar – Java Archive Files
Posted in Java Deployment by admin - Feb 17 2010
JAR files, stand for java archive, a file format based on zip file format ,which is used to aggregate number of files to a single one. Also supports file compression,the basic use of jar files in application development is to pack the resources including classes ,images,files,sounds etc in to single one, to save space and […]
Source Control with CVS
Posted in Java Deployment by admin - Jan 17 2010
CVS is a robust and open source software for version control. Source file’s history can be recorded by this system. Why we need CVS? A small project that is handled by a single person may not need this. But in large projects more developers may concurrently work on the same project. At that time to […]