Java Hex Calculate toHexString(byte[] data)

Here you can find the source of toHexString(byte[] data)

Description

to Hex String

License

Open Source License

Declaration

public static String toHexString(byte[] data) 

Method Source Code

//package com.java2s;
/**// w w  w.j  av a 2  s .com
 Copyright (c) Dilshad Mustafa 2016. All Rights Reserved.

 User and Developer License

 1. You can use this Software for both Personal use as well as Commercial use, 
 with or without paying fee to Dilshad Mustafa. Please read fully below for the 
 terms and conditions. You may use this Software only if you comply fully with 
 all the terms and conditions of this License. 

 2. If you want to redistribute this Software, you should redistribute only the 
 original source code from Dilshad Mustafa's project and/or the compiled object 
 binary form of the original source code and you should ensure to bundle and 
 display this original license text and Dilshad Mustafa's copyright notice along 
 with it as well as in each source code file of this Software. 

 3. If you want to embed this Software within your work, you should embed only the 
 original source code from Dilshad Mustafa's project and/or the compiled object 
 binary form of the original source code and you should ensure to bundle and display 
 this original license text and Dilshad Mustafa's copyright notice along with it as 
 well as in each source code file of this Software. 

 4. You should not modify this Software source code and/or its compiled object binary 
 form in any way.

 5. You should not redistribute any modified source code of this Software and/or its 
 compiled object binary form with any changes, additions, enhancements, updates or 
 modifications, any modified works of this Software, any straight forward translation 
 and/or implementation to same and/or another programming language and embedded modified 
 versions of this Software source code and/or its compiled object binary in any form, 
 both within as well as outside your organization, company, legal entity and/or individual. 

 6. You should not embed any modification of this Software source code and/or its compiled 
 object binary form in any way, either partially or fully.

 7. Under differently named or renamed software, you should not redistribute this 
 Software and/or any modified works of this Software, including its source code 
 and/or its compiled object binary form. Under your name or your company name or 
 your product name, you should not publish this Software, including its source code 
 and/or its compiled object binary form, modified or original. 

 8. You agree to use the original source code from Dilshad Mustafa's project only
 and/or the compiled object binary form of the original source code.

 9. You agree fully to the terms and conditions of this License of this software product, 
 under same software name and/or if it is renamed in future.

 10. This software is created and programmed by Dilshad Mustafa and Dilshad holds the 
 copyright for this Software and all its source code. You agree that you will not infringe 
 or do any activity that will violate Dilshad's copyright of this software and all its 
 source code.

 11. The Copyright holder of this Software reserves the right to change the terms 
 and conditions of this license without giving prior notice.

 12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR OR COPYRIGHT HOLDER
 BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.

 */

public class Main {
    public static String toHexString(byte[] data) {
        String hex = "";
        for (byte by : data) {
            int b = by & 0xff;
            if (Integer.toHexString(b).length() == 1)
                hex = hex + "0";
            hex = hex + Integer.toHexString(b);
        }
        return hex;
    }
}

Related

  1. toHexString(byte[] data)
  2. toHexString(byte[] data)
  3. toHexString(byte[] data)
  4. toHexString(byte[] data)
  5. toHexString(byte[] data)
  6. toHexString(byte[] data)
  7. toHexString(byte[] data, final int offset, final int count)
  8. toHexString(byte[] data, int maxLen)
  9. toHexString(byte[] data, int offset, int length)