Using string-dot-format to craft user feedback
A while back I created a central validation component that I recently had to internationalize. This validator had a lot of standard messages - *Please specify a value...
A while back I created a central validation component that I recently had to internationalize. This validator had a lot of standard messages - *Please specify a value...
So you need to parse a Java property file; lets say your property file resembles the one below:
When it comes to development environments there are few as polished as Microsoft Visual Studio, especially when developing GUI driven applications (either for the web or desktop). I’m...
SmartGWT is a rich framework that can be difficult to understand at first, espeically if you have no experience with Swing programming, but when you discover...
If you have a String[]
that you want to add to a List<String>,
you can do so using the following:
This indispensable library has brought me a great deal of joy when it comes to json-ifying objects and primitives.
This indispensable library has brought me a great deal of joy when it comes to json-ifying objects and primitives.
Word of warning: MD5 hashes are ONE-WAY; you cannot convert a hash back into it’s previous form. You might be thinking that this would be great for storing...
There are multiple ways to get the date and time in Java. This is how you get the current date and time using Date
and