Here you can find the source of jsonDecode(String rowKey)
public static String jsonDecode(String rowKey)
//package com.java2s; //License from project: Apache License public class Main { public static final char MINOR_FIELD_SEPARATOR = (char) 0x1f; public static String jsonDecode(String rowKey) { return rowKey.replaceAll("\\\\x1F", "" + MINOR_FIELD_SEPARATOR); }/* ww w . j a v a2 s . c o m*/ }