Here you can find the source of arr2String(byte[] arr, int start)
public static String arr2String(byte[] arr, int start)
//package com.java2s; /*// w w w .j a v a 2 s. c o m * Copyright 2005, 2006, 2007 Alessandro Chiari. * * This file is part of Hobbybrew. * * Hobbybrew is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Hobbybrew is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Hobbybrew; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ public class Main { public static String arr2String(byte[] arr, int start) { int offset = 0; while (arr[start + offset] != 0) { offset++; } return new String(arr, start, offset); } }