Here you can find the source of byteToString(byte[] input)
Parameter | Description |
---|---|
input | a parameter |
public static String byteToString(byte[] input)
//package com.java2s; //License from project: Open Source License public class Main { /**//www . jav a2 s .c o m * Creates a string * * @param input * @return */ public static String byteToString(byte[] input) { return new String(input); } }