zoukankan      html  css  js  c++  java
  • java 如何将byte中的有效长度转换为String

            一般的我们使用byte接收读取到的数据,若数据没有达到byte定义的大小时,我们直接将byte转换为String则会出现乱码的情况,在这种情况下应该基于read的返回值来转换byte,否则将产生乱码的情况,下面是一个简单的示例:

    [java] view plain copy
     在CODE上查看代码片派生到我的代码片
    1. package com.javaio.myinputstream;  
    2.   
    3. public class MyConsole {  
    4.     public static void main(String argv[]) throws Exception {  
    5.         System.out.println("please input something:");  
    6.         byte[] b = new byte[1024];  
    7.         int len = System.in.read(b);  
    8.         System.out.println("you input is:" + new String(b, 0, len, "UTF-8"));  
    9.     }  
    10. }  
    输出结果:

    [plain] view plain copy
     在CODE上查看代码片派生到我的代码片
    1. please input something:  
    2. asdfasdf  
    3. you input is:asdfasdf  

  • 相关阅读:
    *Integer to English Words
    *Palindrome Linked List
    *Partition List
    Sort Colors
    wireshark tls
    find 路径必须在表达式之前
    http://mozilla.debian.net/
    maven bundle
    xmpp
    xmlns=""
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13317834.html
Copyright © 2011-2022 走看看