Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {

    public static String hexUnsignedString(byte b) {
        return String.format("%02x", decUnsigned(b));
    }

    public static int decUnsigned(byte b) {
        return b & 0xff;
    }
}