전체 글 (532) 썸네일형 리스트형 HTML File : test1.html h1 h2 h3 h4 h5 h6 font 1 font 2 font 3 font 4 font 5 font 6 굴림 돋움 헤드라인 Title - 제목줄에 출력되는 제목 height100 : 한쪽만 지정 시 width 자동계산 띄어쓰기 meta - 문서형식 정의 charset - 문자열 데이터의 형식 euc-kr > utf-8(유니코드) : euc-kr는 한글만 지원 utf-8는 다국어 지원 MS949 KSC5601 body bgcolor 알려진 색상이름 / 16진수 RGB background 이미지 파일경로명 / 이미지 파일명(절대/상대경로) *gif 일러스트 계열, jpg 사진 계열, png gif/jpg 장점들로 제작 *바탕화면에 보이게됨 *이미지는 바탕화면의 크기만큼 반.. 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.. 이전 1 ··· 53 54 55 56 57 58 59 ··· 67 다음