A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© fanrong 中级黑马   /  2015-8-8 23:17  /  254 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

    1.把字符串转换成字节数组getBytes()
        byte[] by = s.getBytes();
        for(int x=0;x<by.length;x++){
                System.out.print(by[x]+"\t");
        }
        System.out.println();
      2.把字符串转换成字符数组toCharArray()
        char[] ch = s.toCharArray();
        for(int x=0;x<ch.length;x++){
                System.out.print(ch[x]+"\t");
        }
        System.out.println();
       3.把任意类型转换成字符串valueOf()
        int x = 42;
        System.out.println(s.valueOf(x));
        
      4.把字符串变成小写原字符串不变toLowerCase()
        System.out.println(s.toLowerCase());
        System.out.println(s);
     5.把字符串变成大写原字符串不变toUpperCase()
        System.out.println(s.toUpperCase());
      6.字符串链接concat()
        System.out.println(s.concat("Fanrong"));

4 个回复

倒序浏览
沙发 今天学的内容 先顶一个
回复 使用道具 举报
你也是0723的?
回复 使用道具 举报
getBytes()可以指定编码集,编码后解码要注意

valueOf()参数不能是short、byte
回复 使用道具 举报
真实姓名被注册 发表于 2015-8-9 10:01
getBytes()可以指定编码集,编码后解码要注意

valueOf()参数不能是short、byte

貌似这没有啊,刚查了一下

public static String valueOf(Object obj)
不过Object obj是指对象啊,还是任意类型啊
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马