我想处理一个字符串如:ou=公司,ou=中国;我想只得到“公司,中国”这个串,也就是得到两个等号后面的字符组成的串,用java怎么处理,还请赐教!!

解决方案 »

  1.   

    Properties properties = new Properties();
      properties.load(new FileInputStream(file));
      String com=properties.get("com");
    a.properties文本中
    ou=公司,ou=中国这样写即可
      

  2.   

    public String getContent(String s){
    String content="";
    if(s.contains("=")){
    String[] str=s.split("=");
    content=str[1];
    }
    return content;
    }
      

  3.   

    String t="ou=中国";
    t=t.substring(3);