7 Recent Entries tagged with »Java«
It appears that Apple missed the new rules for Daylight Saving Time (DST) in New Zealand in even the most recent versions of Mac OS X 10.4 Tiger.
From this year [2007], Daylight Saving will ru...
javap | October 04, 2007
The javap command disassembles a Java(tm) class file. The options
determine the output. If no options are used, javap prints out the
package, protected, and public field...
Being a long time ant user i always wanted to use Ant-style properties in my Spring bean definitions. And no surprise here - this is quite easy to accomplish.
Spring has the PropertyPlaceholderConfigurer class which takes a Java properties file and replaces ${} placeholders in your XML base bean definition files.
The latest release of Eclipse (Eclipse 3.2) comes with Callisto, a rich set of optional plugins for Eclipse 3.2. Callisto includes a powerful profiling tool called the Eclipse Test & Performance Too...
Assuming your current locale is non US the following piece of code will throw a ParseException: Unparseable date: "06-Mar-2006 12:35"
SimpleDateFormat format = new SimpleDateFormat("dd-MMM-...
Logger:
# == Synopsis
#
# Simple remote debug class
#
# == Author
# Stefan Saasen s@juretta.com
#
# == Copyright
# Copyright (c) 2005 juretta.com Stefan Saasen
# Licensed under the same...
Öffentliches SSL-Zertifikat importieren:
openssl s_client -connect ssl.example.com:443 > server.pem
Zeritifikat in den Java-Keystore importieren:
keytool -import -alias ssl.example.com -k...