web(53)
-
스윙 브라우저(Swing-Browser) 설치하기 - install
스윙 브라우저 다운로드 http://codedragon.tistory.com/3004 스윙 브라우저(Swing-Browser)-다운로드 스윙 브라우저(Swing-Browser) 사파리, 인터넷 익스플로러, 크롬 브라우저와 같은 웹서핑에 사용되는 인터넷 브라우저 종류중 하나 Swing-Browser Homepage http://swing-browser.com/ 다운로드 http://swing-brow.. codedragon.tistory.com 스윙 브라우저(Swing-Browser) 설치하기 swing_installer.exe 동의 및 설치 확인 다음 확인 설치 완료
-
스윙 브라우저(Swing-Browser)-다운로드
스윙 브라우저(Swing-Browser) 사파리, 인터넷 익스플로러, 크롬 브라우저와 같은 웹서핑에 사용되는 인터넷 브라우저 종류중 하나 Swing-Browser Homepage http://swing-browser.com/ 다운로드 http://swing-browser.com/ 중앙에 있는 스윙브라우저 다운로드 버튼 클릭 http://advert.estsoft.com/?event=201301091857428
-
Tomcat web server에서 JRE설정하기
JRE System Library > Next Workspace default JRE 선택 > Finish OK
-
Error-Resource '/web/WebContent/WEB-INF/web.xml' does not exist
에러 메시지 Resource '/web/WebContent/WEB-INF/web.xml' does not exist 해결방법 web.xml파일을 다운 받은 후 생성한 Dynamic Web Project의 /WebContent/WEB-INF/폴더에 복사해 넣어줍니다. web.xml 다운받기
-
13.html-은닉화 / 캡슐화
은닉화 / 캡슐화 소스 코드 function Rectangle(width, height){ //지역변수는 외부에서 호출 불가(은닉화) var width = width; var height = height; this.getWidth = function(){ return width; }; this.getHeight = function(){ return height; }; } var rectangle = new Rectangle(6, 8); //외부에서 호출불가 document.write(rectangle.width + ', ' + rectangle.height + ' '); //메소드를 통해 접근 document.write(rectangle.getWidth() + ', ' + rectangle.getHeig..
-
은닉화 / 캡슐화- 12.html
은닉화 / 캡슐화 소스 코드 function Rectangle(width, height){ //지역변수는 외부에서 호출 불가(은닉화) var width = width; var height = height; this.getWidth = function(){ return width; }; this.getHeight = function(){ return height; }; this.setWidth = function(width){ //검증 if(width