puoi portarlo a Date
String s = rs.getString(...);
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
Date d = sdf.parse(s);
devi impostare il formato, io ho messo uno con solo la data
guarda http://java.sun.com/j2se/1.5.0/docs/...ateFormat.html per capire come funziona