본문 바로가기

분류 전체보기

(467)
VMware에서 리눅스 설치하기 준비물 : VMware, Cent리눅스 Desktop - Gnome 지금 사용자 설정 > 데스크탑 환경 > GNOME 데스크탑 환경 > 옵션 패키지 > gdeit, gnome-utils, gnome-themes 체크 > 응용 프로그램 > 그래픽 인터넷만 체크 후 옵션패키지 > firefox, gnome-themes 체크 > 개발용 도구 > X 소프트웨어 개발, 개발용 도구, 개발용 라이브러리, 레거시 소프트웨어 개발 > 서버 > 모두 체크해제 > 기반 시스템 > X 윈도우 시스템, 기본 체크 이로써 CentOS의 설치가 완료되었으며 재부팅을 하면 여러가지 옵션을 체크하여 자신에 맞는 환경으로 설정하면된다. X윈도우 에러 해결방법 mount /dev/cdrom /media/ : cdrom 마운트 후 cd ..
SCJP 1.5 Question 1 Given: 11. public interface Status { 12. /* insert code here */ int MY_VALUE = 10; 13. } Which three are valid on line 12? (Choose three.) A. final B. static C. native D. public E. private F. abstract G. protected Answer: ABD Question 2 Given: 10. public class Bar { 11.static void foo(int...x) { 12. // insert code here 13. } 14. } Which two code fragments, inserted independently at li..
자바 Generic #1 /* 1. GenTest라는 클래스를 작성해보자! 이는 때에 따라서는 Integer형 배열이 저장되고 또는 String형 배열이 저장 가능하도록 해보자! */ class GenTest { T[] a; public GenTest(T[] n){ a = n; } public void print(){ for(T arr : a) System.out.print(arr+" "); } public static void main(String[] args) { String[] strArr = {"가","나","다"}; GenTest gt = new GenTest(strArr); gt.print(); Integer[] intArr = {1, 2, 3}; GenTest gt1 = new GenTest(intArr); gt1...
자바 Calendar import java.util.*; class Test{ public static void main(String[] args){ Calendar today = Calendar.getInstance(); System.out.println("Year : " +today.get(Calendar.YEAR)); System.out.println("Month : " +today.get(Calendar.MONTH)); System.out.println("이 해의 몇 째 주 : " +today.get(Calendar.WEEK_OF_YEAR)); System.out.println("이 달의 몇 째 주 : " +today.get(Calendar.WEEK_OF_MONTH)); System.out.println("이 달의 몇..
자바 String class StringEx5{ public static void main(String[] args){ String s1 = "Kwon,Sun,Ae"; int index = s1.indexOf('n'); System.out.println("맨 처음 문자 n의 위치 : " + index); index = s1.indexOf("Sun"); System.out.println("문자 Sun의 위치 : " + index); index = s1.lastIndexOf('n'); System.out.println("마지막 문자 n의 위치 : " + index); char c = s1.charAt(index); //문자 추출 System.out.println("추출한 문자 : "+ c); index = s1.indexOf..
2009년 1회 정보처리기사/산업기사 실기 가답안 아래 링크를 따라가세요 http://www.gisafirst.com/community/community_01.html?bbs=okbbs_qna&classnumber=&kindmode=&classid=&mode=view&offset=0&number=6092&key=&keyfield=
윈도우 기본프로그램 실행 명령어 모음 윈도우키 -> 시작 -> 실행 혹은 윈도우키 + R 으로 실행창을 열어두고 아래의 명령어를 입력하시면 됩니다. cmd (명령 프롬프트) mspaint.exe (그림판) devmgmt.msc (장치관리자) calc (계산기) taskmgr.exe (작업관리자) msmsgs (윈도우 메신저) tracert 대상 사이트 주소 (예:tracert naver.com 네이버까지 경유해가는 IP를 출력 IP추적) shutdown -a (악성 바이러스및 자동종료 웜등으로 부터 자동종료를 막을때) Wmplayer.exe (윈도우 미디어 플레이어) rundll32 powrprof.dll,SetSuspendState (최대 절전 모드) shutdown -r , shutdown -l , shutdown -s , shutdow..
2009년 기사/산업기사 시험일정 2009년도 기사/산업기사 회별 검정시행일정 ( 전문사무포함 ) 회 별 필기시험원서접수 필기 시험 필기시험합격 (예정)자발표 응시자격서류제출 및 필기시험 합격자결정 실기시험 원서접수 실기시험 합격자 발표 인터넷 제1회 2009.02.06 - 2009.02.12 2009.03.01 2009.03.13 2009.03.16 - 2009.03.26 2009.03.16~3.17/19~3.20 (3월18일제외) 2009.04.18 - 2009.05.01 2009.06.01 제2회 2009.04.17 - 2009.04.23 2009.05.10 2009.05.29 2009.06.01 - 2009.06.10 2009.06.01 - 2009.06.04 2009.07.04 - 2009.07.17 2009.08.17 제3회 ..