String和byte[]之间的相互转换


        String类型转化byte[]
    
        String s1 = "abc123中国";
        byte[] bytes = s1.getBytes();
        
        
        byte[]转换为String
        
        String s2 = new String(bytes);

你可能感兴趣的:(java,html,servlet)