Java Json Decode jsonDecode(String rowKey)

Here you can find the source of jsonDecode(String rowKey)

Description

json Decode

License

Apache License

Declaration

public static String jsonDecode(String rowKey) 

Method Source Code

//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*/
}