⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 a.java

📁 短信宝典Java源码
💻 JAVA
字号:
// Decompiled by Jad v1.5.7f. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) 

package smsq;


public class a
{

    public a()
    {
    }

    public static String a(byte abyte0[], int i)
    {
        StringBuffer stringbuffer = new StringBuffer("");
        for(int j = 0; j < i;)
        {
            int k = abyte0[j++];
            if(k < 0)
                k += 256;
            int l = abyte0[j++];
            if(l < 0)
                l += 256;
            char c = (char)(k + (l << 8));
            stringbuffer.append(c);
        }

        return stringbuffer.toString();
    }

    public static String a(byte abyte0[])
    {
        return a(abyte0, abyte0.length);
    }

    public static byte[] a(String s)
    {
        int i = s.length();
        byte abyte0[] = new byte[i << 1];
        int j = 0;
        for(int k = 0; k < i; k++)
        {
            char c = s.charAt(k);
            abyte0[j++] = (byte)(c & 0xff);
            abyte0[j++] = (byte)(c >> 8);
        }

        return abyte0;
    }
}

⌨️ 快捷键说明

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