码迷,mamicode.com
首页 > 其他好文 > 详细

几种字符间的转换

时间:2016-08-26 18:13:45      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

1.将字符串转换成固定长度的字符串

  

技术分享
public static String getFixedLenStr(String str, int len, char c, boolean fillleft) {
        if (str == null)
            str = "";
        if (str.getBytes().length > len)
            return str.substring(0, len);
        else {
            int len1 = len - str.getBytes().length;
            if (len1 > 0) {
                byte[] b = new byte[len1];
                for (int i = 0; i < len1; i++)
                    b[i] = (byte) c;
                if (fillleft)
                    str = new String(b) + str;
                else
                    str += new String(b);
            }
            return str;
        }
    }
View Code

2.将一个字节转换为16进制字符串

技术分享
 public static String convertByteToHexStr(byte src) {
        byte[] ret = new byte[2];
        ret[0] = (byte) (src >> 4 & 0x0F);
        ret[0] = (byte) (ret[0] > 9 ? (ret[0] - 10 + ‘a‘) : (ret[0] + ‘0‘));
        ret[1] = (byte) (src & 0x0F);
        ret[1] = (byte) (ret[1] > 9 ? (ret[1] - 10 + ‘a‘) : (ret[1] + ‘0‘));
        return new String(ret);
    }
View Code

3.将十六进制字符串转换成一个字节

技术分享
static public byte convertHexStrToByte(String src) {
        byte b1 = ‘0‘, b2 = ‘0‘;
        byte[] b = src.getBytes();
        src = src.toLowerCase();
        if (b.length > 1) {
            b2 = b[1];
            b1 = b[0];
        } else if (b.length > 0)
            b2 = b[0];
        b1 = (byte) (b1 > ‘9‘ ? b1 - ‘a‘ + 10 : b1 - ‘0‘);
        b2 = (byte) (b2 > ‘9‘ ? b2 - ‘a‘ + 10 : b2 - ‘0‘);
        return (byte) (b1 << 4 | b2);
    }
View Code

 

几种字符间的转换

标签:

原文地址:http://www.cnblogs.com/feitianshaoxai/p/5811029.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!