Here you can find the source of quoteText(String text)
private static String quoteText(String text)
//package com.java2s; //License from project: Open Source License public class Main { private static String quoteText(String text) { String txt = text.replaceAll("\n", "\\\\n"); txt = txt.replaceAll("\r", "\\\\r"); txt = txt.replaceAll("\t", "\\\\t"); return "\"" + txt + "\""; }/*w ww .j ava2 s . c om*/ }