'JAVA'에 해당되는 글 51건

  1. 2009.07.16 자바 String 특수문자 관련
2009. 7. 16. 13:23

자바 String 특수문자 관련

public class Test{
public static void main(String [] args){
String str = "192.168.10.1";

String [] temp = str.split("\\.");

for(int i = 0; i < temp.length; i++){
System.out.println(temp[i]);
}
}
}