자바 고수님들..ㅠ
새론
import java.util.*;
class UnionTest {//TreeSet클래스는 순서가있는 집합을 표현하기위해 사용된다.
public static void main(String[] args){
TreeSet low = new TreeSet();
TreeSet even = new TreeSet();//
// 두개의 treeSet 객체를 생성한다
for (int i=0;i5 ; i++){
low.add(new Integer(i));
even.add(new Integer(i*2));
}
//두개의 TreeSet 객체에 요소(Integer 객체)를 추가한다
TreeSet union = new TreeSet(low);
//low 객체를 이용하여 union 객체를 생성
boolean setChanged = union.addAll(even);
//union 객체에 even 객체의 모든 요소를 추가한다.
//단 집합의 특성상 중복되는 요소는 저장되지 않는다.
System.out.println(low 집합: + low + even 집합 : + even);
System.out.println(union 합집합 : + union);
}
}
발표해야되는대..주석을 붙인다고 붙이고 잇는대 너무 어렵내요.ㅠㅠㅠㅠ
부탁드립니다
메소드는 뭐가잇고 뭐이런것들 좀 자세히 알려주세요
이번에 복학했는데.......
하나도 모르겟내요ㅜㅜㅜㅜㅜㅜㅜ
import java.io.InputStream;
import java.net.*;
import java.op.*;
import java.util.Data;
class KbsURLConnection {
public static void main(String args[]) throws Exceptipn{
URL kbs = new
URL(http://www.kbs.co.kr/aboutkbs/audience.htm1);
//URL 객체 kbs를 생성
URLConnection kbsCon = kbs.openConnection();
//openConnection()메소드를 이용하여 URLConnection 객체
//kbsCon을 생성
System.out.println(문서의 타입:+ kbsCon.getContentType());
System.out.println( 마지막 수정일자 : + new Date(kbsCon.getLastModified());
int len = 200;
//문서의 내용을 200 바이트만 읽어 오기 위해 200으로 설정
if (len 0 ) {
System.out.println(=== 문서의 내용 ===);
InputStream input = kbsCon.getInputStream();
//바이트 단위로 입력을 받기 위한 객체 생성
int i = len;
int c;
while (((c = input.read()) ! = -1 ) && ( --i 0)){
//파일의 끝이거나 200바이트를 다 읽어낼 때 까지
System.out.print((char)c);
//읽은 값을 문자형으로 변환하여 인쇄
}
input.close();
//입력 스트림을 닫는다
} else{
System.out.println(내용이 없음);
}
}
당최뭔말인지 모르겟어요 ㅠㅠ
이해할수있게 도와주세요