Test & Debug register template on vmware

This commit is contained in:
Kelven Yang 2010-08-26 13:35:46 -07:00
parent bbb307c82d
commit b91c910a94
1 changed files with 0 additions and 11 deletions

View File

@ -242,16 +242,6 @@ public class DateUtil {
// test only // test only
public static void main(String[] args) { public static void main(String[] args) {
try {
URI uri = new URI("nfs://192.168.10.231/export/home/kelven/vmware-test/secondary");
System.out.println("protocol: " + uri.getScheme());
System.out.println("Host: " + uri.getHost());
System.out.println("path: " + uri.getPath());
System.out.println("port: " + uri.getPort());
} catch(Exception e) {
}
/*
TimeZone localTimezone = Calendar.getInstance().getTimeZone(); TimeZone localTimezone = Calendar.getInstance().getTimeZone();
TimeZone gmtTimezone = TimeZone.getTimeZone("GMT"); TimeZone gmtTimezone = TimeZone.getTimeZone("GMT");
TimeZone estTimezone = TimeZone.getTimeZone("EST"); TimeZone estTimezone = TimeZone.getTimeZone("EST");
@ -274,7 +264,6 @@ public class DateUtil {
System.out.println("Parsed TZ time string : "+ dtParsed.toString()); System.out.println("Parsed TZ time string : "+ dtParsed.toString());
} catch (ParseException e) { } catch (ParseException e) {
} }
*/
} }
} }