Author Archives | Muthukumar

About Muthukumar ( subscribe )

Comparing Objects in Java

July 24, 2008

0 Comments

Comparing Objects in Java In Java comparing two value object is not straight forward. Here we will see how we can compare two value objects in Java. For that first we will create a value object called “MyValueObject”. This value object contains two properties. 1) firstName 2) lastName. Both the properties are of type string. [...]

email

File Upload and Download using Java

October 10, 2007

23 Comments

File Upload and Download is always a handy utility to know. There will be some need to upload a file to an FTP server, Like if you generate a report or store some data in .xls file, then it needs to be uploaded to a FTP server for further use. like wise we need to [...]