Here you can find the source of mapToString(Map, ?> map)
public static String mapToString(Map<?, ?> map)
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static String mapToString(Map<?, ?> map) { if (map.isEmpty()) { return ""; }// w w w . ja va 2 s . co m StringBuilder stringBuilder = new StringBuilder(); boolean notFirst = false; for (Map.Entry<?, ?> entry : map.entrySet()) { if (notFirst) { stringBuilder.append(','); } stringBuilder.append(entry.getKey().toString()).append(':').append(entry.getValue().toString()); notFirst = true; } return stringBuilder.toString(); } }