Java Byte Array to String bytes2String(byte[] bytes)

Here you can find the source of bytes2String(byte[] bytes)

Description

bytes String

License

Open Source License

Declaration

private static String bytes2String(byte[] bytes) 

Method Source Code

//package com.java2s;
// Licensed under the Apache License, Version 2.0 (the "License"); you may

public class Main {
    private static String bytes2String(byte[] bytes) {
        StringBuffer stringBuffer = new StringBuffer();
        for (int i = 0; i < bytes.length; i++) {
            stringBuffer.append((char) bytes[i]);
        }//from   w w  w.j  av  a 2  s .c  om
        return stringBuffer.toString();
    }
}

Related

  1. bytes2String(byte[] args)
  2. bytes2String(byte[] b, int start, int len)
  3. bytes2String(byte[] bs, String charset)
  4. bytes2String(byte[] buffer, int offset, int length)
  5. bytes2String(byte[] bytes)
  6. bytes2String(byte[] bytes)
  7. bytes2String(byte[] bytesArray)
  8. bytes2String(byte[] data)
  9. bytes2string(byte[] src)