Converting JSON data to Java object

I looked at Google’s Gson as a potential JSON plugin. Can anyone offer some form of guidance as to how I can generate Java from this JSON string? Google Gson supports generics and nested beans. The [] in JSON represents an array and should map to a Java collection such as List or just a plain Java array. The {} in JSON … Read more

Converting pfx to pem using openssl

You can use the OpenSSL Command line tool. The following commands should do the trick If you want your file to be password protected etc, then there are additional options. You can read the entire documentation here.