这个方法是JDK1.4才有的,而你用的服务器的JDK应该不是1.4的吧,所以才会有这个问题

解决方案 »

  1.   

    不是有现成的函数吗?
    java.lang.String.split(java.lang.String)split
    public String[] split(String regex)
    Splits this string around matches of the given regular expression. 
    This method works as if by invoking the two-argument split method with the given expression and a limit argument of zero. Trailing empty strings are therefore not included in the resulting array. The string "boo:and:foo", for example, yields the following results with these expressions: Regex     Result 
    : { "boo", "and", "foo" } 
    o { "b", "", ":and:f" } 
    Parameters:
    regex - the delimiting regular expression 
    Returns:
    the array of strings computed by splitting this string around matches of the given regular expression 
    Throws: 
    PatternSyntaxException - if the regular expression's syntax is invalid 
    NullPointerException - if regex is null
    Since:
    1.4 
    See Also:
    Pattern