Here you can find the source of quoteString(String s)
public static String quoteString(String s)
//package com.java2s; //License from project: Open Source License public class Main { public static String quoteString(String s) { return "\"" + s + "\""; }/*from w w w.jav a 2s . c o m*/ }