Here you can find the source of getUnicodeString(byte bytes[], int offset, int len)
Parameter | Description |
---|---|
bytes | the string byte |
offset | offset to read |
len | length of string |
public static String getUnicodeString(byte bytes[], int offset, int len)
//package com.java2s; /* //from w ww . j a va2 s . com *FastExcel,(c) copyright 2009 yAma<guooscar@gmail.com>. *WEB: http://fastexcel.sourceforge.net * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library 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 Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, * USA. */ import java.io.UnsupportedEncodingException; public class Main { public static final String UNICODE_ENCODING = "UnicodeLittle"; /** * Get UNICODE String. * * @param bytes * the string byte * @param offset * offset to read * @param len * length of string * @return the string */ public static String getUnicodeString(byte bytes[], int offset, int len) { try { return new String(bytes, offset, len * 2, UNICODE_ENCODING); } catch (UnsupportedEncodingException e) { return ""; } } }