您的位置:首页 > 其它

文件直接转化为16进制

2013-11-20 17:57 141 查看
private final static String[] hexSymbols = { "0", "1", "2", "3", "4", "5",
			"6", "7", "8", "9", "a", "b", "c", "d", "e", "f" };

	public final static int BITS_PER_HEX_DIGIT = 4;

	public static String toHexFromByte(final byte b) {
		byte leftSymbol = (byte) ((b >>> BITS_PER_HEX_DIGIT) & 0x0f);
		byte rightSymbol = (byte) (b & 0x0f);
		return (hexSymbols[leftSymbol] + hexSymbols[rightSymbol]);
	}

	public static String toHexFromBytes(final byte[] bytes) {
		if (bytes == null || bytes.length == 0) {
			return ("");
		}
		// there are 2 hex digits per byte
		StringBuilder hexBuffer = new StringBuilder(bytes.length * 2);

		// for each byte, convert it to hex and append it to the buffer
		for (int i = 0; i < bytes.length; i++) {
			hexBuffer.append(toHexFromByte(bytes[i]));
		}
		return (hexBuffer.toString());
	}

	public static void main(final String[] args) throws IOException {
		try {
			FileInputStream fis = new FileInputStream(new File("D:/source/HWDAS/db/00_database/00000002_HWDAS_HitSQLServerCLR.dll"));

			byte[] bytes = new byte[fis.available()];
			fis.read(bytes);

			System.out.println(toHexFromBytes(bytes));
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: