//배열 내용 읽기
for(int i=0; i < array.length; i++){
System.out.format("array[%d] = %s%n", i,array[i]);
}
반응형
'차근차근 > JAVA JSP' 카테고리의 다른 글
세션에 데이터 저장했다가 보여주기 (0) | 2014.11.12 |
---|---|
컬렉션 Collection (0) | 2014.11.11 |
Arrays.asList의 UnsupportedOperationException (0) | 2014.11.11 |
The method addAll(Collection<? super T>, T...) in the type Collections is not applicable for the arguments (ArrayList<plant>, String[]) (0) | 2014.11.11 |
문자열 나누기 2 (0) | 2014.11.10 |