I have Map
in java like this :
{card_switch=Master, issuing_bank=ICCI, card_Type=DebitCard}
I\'m using the s
You can also try something like this with Gson Library:
package com.stackoverflow.works;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.Map;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
/*
* @Author: sarath_sivan
*/
public class MapToJsonConverter {
/*
* @Description: Method to convert Map to JSON String
* @param: map Map
* @return: json String
*/
public static String convert(Map map) {
Gson gson = new Gson();
String json = gson.toJson(map);
return json;
}
/*
* @Description: Method to convert JSON String to Map
* @param: json String
* @return: map Map
*/
public static Map revert(String json) {
Gson gson = new Gson();
Type type = new TypeToken
The output look like this: