Java Advanced Imaging (JAI) Application Program Interface (API) provides a low cost, licensing independence and inter-platform independent API to create java applications for image processing, representation and visualization . It gives a professional approach to image manipulation by allowing to write our own routines rather than just using commercial image processing systems. JAI provides an […]
Java Advanced Imaging API
Posted in Java Development by admin - Jun 27 2010
Java Preferences API replace Property files
Posted in Java Development by admin - Apr 20 2010
There are many applications which require certain types of configuration data for their processing. The configuration data often stored in property files and properties has to read/write into this property files ,so there is always an overhead of managing these property files. The Preferences API introduced in J2SE 1.4 allows applications to store and manipulate […]
Pattern matching using Regex
Posted in Java Development by admin - Apr 20 2010
On simple words , these regex or Regular Expressions are used to validate the E-mail address, URL, phone no’s etc.The regular expression is a string of characters that describes a character sequence. You can specify a regular expression that represents a general form that can match several different specific character sequences. They can be used […]