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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 马上都有 中级黑马   /  2014-5-20 16:27  /  868 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. public class test{
  2.    public static void main(String[] args){
  3.       String info = "XUCHENG:01|HEIMA:02|XU:03";
  4.       String s[] = info.split("|");
  5.       System.out.println("字符串的拆分:");
  6.       for(int i=0; i<s.length; i++){
  7.          String s2[] = s[i].split(":");
  8.          System.out.println("\t|-" + s2[0] + "\t" + s2[1]);
  9.       }
  10.    }
  11. }
复制代码
总是错,有没有搞错?

点评

以后注意提问时题目写具体点。  发表于 2014-5-20 19:50

2 个回复

倒序浏览
你第四行  String s[] = info.split("|");有问题,,java中“|”是逻辑运算符,使用时应该转义,
下面是可运行代码

  1. public class test{
  2.            public static void main(String[] args){
  3.               String info = "XUCHENG:01|HEIMA:02|XU:03";
  4.               String s[] = info.split("\\|");
  5.               System.out.println("字符串的拆分:");
  6.               for (String string : s) {
  7.                       System.out.println(string);
  8.                        
  9.                 }
  10.               System.out.println("---------------------------------");
  11.               for(int i=0; i<s.length; i++){
  12.                  String s2[] = s[i].split(":");
  13.                  System.out.println("\t|-" + s2[0] + "\t" + s2[1]);
  14.               }
  15.            }
  16.         }
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马