Here you can find the source of quoteMe(String unquoted)
private static String quoteMe(String unquoted)
//package com.java2s; //License from project: Open Source License public class Main { private static String quoteMe(String unquoted) { return "\"" + unquoted.replaceAll("\"", "\"\"").replaceAll("\\\\", "\\\\\\\\") + "\""; }/*w w w. j a va2s. co m*/ }