Saturday, December 24, 2016

An useful util to handle nested collection in Java

An useful util to separate a list to multiple sublist in Java

Assume that you need to group/separate a List of object to multiple sublist with an specified size, below use should be useful.

Saturday, December 17, 2016

Java Send HTTP POST Request with x-www-form-urlencoded Format

The key thing is that we need to use the util URLEncoder to encode parameter name and its value.