Here you can find the source of unquote(String s)
public static String unquote(String s)
//package com.java2s; public class Main { public static String unquote(String s) { return s.startsWith("\"") ? s.substring(1, s.length() - 1) : s; }/*w ww. ja v a2 s . c om*/ }