Java Hex Calculate toHex(final byte b)

Here you can find the source of toHex(final byte b)

Description

to Hex

License

Apache License

Declaration

private static String toHex(final byte b) 

Method Source Code

//package com.java2s;
/* ********************************************************************
 Licensed to Jasig under one or more contributor license
 agreements. See the NOTICE file distributed with this work
 for additional information regarding copyright ownership.
 Jasig licenses this file to you 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://from   w  w  w.  ja  v  a2s .  c o  m

 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.
 */

public class Main {
    private static String toHex(final byte b) {
        int i = (b >> 4) & 0x0F;
        String tmp;

        if (i < 10) {
            tmp = Integer.toString(i);
        } else {
            tmp = new Character((char) (('A' + i) - 10)).toString();
        }

        i = b & 0x0F;

        if (i < 10) {
            tmp += Integer.toString(i);
        } else {
            tmp += new Character((char) ('A' + (i - 10))).toString();
        }

        return tmp;
    }
}

Related

  1. toHex(byte[] val, int start, int len)
  2. toHex(byte[] value)
  3. toHex(byte[] value)
  4. toHex(char c)
  5. toHex(final byte b)
  6. toHex(final byte... bin)
  7. toHex(final byte[] ba)
  8. toHex(final byte[] ba)
  9. toHex(final byte[] bytes)