Things I will must after the class.
2011-04-27 08:18:37

1. The assignment of medical data managing.

2. remove the noise in the mp3 file.

3. (option) listen to the lecture mp3 file.

▼ more
용량 JAVA로
2011-04-26 14:28:23

getTotalSpace() : 총 용량

getFreeSpace() : 남은 용량

getUsableSpace() : 사용 공간

public static void main(String[] args) {

File[] roots = File.listRoots();

System.out.println(roots.length);

for (int i = 0; i < roots.length; i++) {

System.out.println(roots[i]);

System.out.println("총 용량 = " + roots[i].getTotalSpace());

System.out.println("남은 공간 = " + roots[i].getFreeSpace());

System.out.println("사용 공간 = " + roots[i].getUsableSpace());

}

}

▼ more
work list
2011-04-26 13:21:10

화 감각 : 오전, 호흡생리학 : 오후

수 감각, 일과후 : 감각

목 과제 사전 심의, 후 : 감각

금 과제 운영자 면담

▼ more
next week work list
2011-04-23 23:21:21

일 ACCESS 과제 : 일요일오전, 감각 : 일요일 오후

월 ACCESS 과제 제출, 호흡생리학 : 오전, 오후, 시험감독

화 감각 : 오전, 호흡생리학 : 오후

수 감각

목 과제 사전 심의

금 과제 운영자 면담

▼ more