Package mungbean

Source Code of mungbean.Utils

/*
   Copyright 2009 Janne Hietamäki

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/

package mungbean;

import java.nio.charset.Charset;
import java.util.regex.Pattern;

import sun.misc.HexDumpEncoder;

public class Utils {
    private final static Pattern HEX_CHARACTERS = Pattern.compile("^[0-9a-f]+$");
    public static final Charset UTF8 = Charset.forName("UTF-8");

    public static String toHex(byte[] content) {
        StringBuilder hexString = new StringBuilder();
        for (byte b : content) {
            hexString.append(String.format("%02x", (0xFF & b)));
        }
        return hexString.toString().toLowerCase();
    }

    public static byte[] hexStringToBytes(String input) {
        input = input.toLowerCase();
        int len = input.length();
        Assert.isTrue(len % 2 == 0, "hex string must contain even number of characters");
        Assert.isTrue(HEX_CHARACTERS.matcher(input).matches(), "Input contains invalid characters: " + input);
        byte[] data = new byte[len / 2];
        for (int i = 0; i < len; i += 2) {
            data[i / 2] = (byte) ((Character.digit(input.charAt(i), 16) << 4) + Character.digit(input.charAt(i + 1), 16));
        }
        return data;
    }

    public static String hexDump(byte[] bytes) {
        return new HexDumpEncoder().encode(bytes);
    }
}
TOP

Related Classes of mungbean.Utils

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.