Author Archive

List files sorted by date in java

File inboxDir = new File("Path to your directory"); File[] files = inboxDir.listFiles(); Arrays.sort( files, new Comparator() { public int compare

General Technology

No Comments

Calling Oracle Stored Procedure from Hibernate

While calling Oracle stored procedure from Hibernate  there is couple of rules that we need to follow. There can be only one return value and this m

General Technology, Java, Oracle

7 Comments

Java Calendar and Date Operations

Java - Find a given date belongs in which quarter: SimpleDateFormat sdf = new SimpleDateFormat(); sdf.applyPattern("MM/dd/yyyy"); Calendar calenda

Java

4 Comments

Add Interactive Map to your website using Google Maps API

Add Interactive Map to your website using Google Maps API

Interactive maps has become an inevitable part of modern web applications and introduction of Google Map API has made it even easier to integrate an i

General Technology

3 Comments

Clob Processing in Java, Spring and Hibernate

This blog  shows how to save CLOB to a Relational Database using Java, Spring and Hibernate.This example is implemented using two classes from Sprin

Java

No Comments