Here you can find the source of unescape(String s)
public static String unescape(String s)
//package com.java2s; //License from project: Open Source License public class Main { public static String unescape(String s) { return s.replace("\\\"", "\""); }//from w w w . ja va2 s . c o m }