chstr.jad

来自「采用TOMCAT+SQL编程」· JAD 代码 · 共 31 行

JAD
31
字号
// Decompiled by DJ v3.7.7.81 Copyright 2004 Atanas Neshkov  Date: 2008-03-14 PM 04:25:19
// Home Page : http://members.fortunecity.com/neshkov/dj.html  - Check often for new version!
// Decompiler options: packimports(3) 
// Source File Name:   chStr.java

package shudian;


public class chStr
{

    public chStr()
    {
    }

    public String chStr(String s)
    {
        if(s == null)
            s = "";
        else
            try
            {
                s = (new String(s.getBytes("iso-8859-1"), "GB2312")).trim();
            }
            catch(Exception exception)
            {
                exception.printStackTrace(System.err);
            }
        return s;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?