首页 > 代码库 > TzJson

TzJson

1、

package z_utils;

import java.net.URLDecoder;

public class TzJson
{
    public static void main(String[] args)
    {
    }
// ***
    
    public String FstrJson = null;
    
    public int JsonStr2UTF8() throws Exception
    {
        int iIdx = 0;
        while (iIdx < (FstrJson.length()-1))
        {
            if ((FstrJson.charAt(iIdx) == ‘\\‘) && (FstrJson.charAt(iIdx+1) == ‘u‘))
            {
                String strSub01 = FstrJson.substring(iIdx, iIdx+4);
                String strSub02 = URLDecoder.decode(strSub01, "UTF-8");
                FstrJson = FstrJson.replace(strSub01, strSub02);
            }
            
            iIdx ++;
        }
        return 0;
    }
}

 

2、

3、

 

TzJson