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 toHex(byte[] bytes) {
        String temp = "";
        for (int index = 0; index < bytes.length; index++) {
            temp = temp + " " + String.format("%02x", bytes[index]);
        }
        return temp;
    }
}