본문 바로가기

Develop

How To Install Eclipse 3.3 Manually Eclipse 3.3 수동 설치하기. ##################################################################I have been using Eclipse for quite some time now. I prefer Eclipse as development IDE because its ease of use. The overall design of Eclipse keeps the tools you need immediately at your fingertips. Using APT to install Eclipse on your Debian / Ubuntu machine will give you the old version of Eclipse. I would l.. 더보기
Local directories with Apache on Ubuntu 7.04 We all want to have local directories in Apache so we can write and test code safely. Here’s how to do it 1. Create a directory in your home called public_html 2. Install the userdir Apache module using the a2enmod command like so sudo a2enmod userdir 3. Edit the Apache 2 user preferences configuration file at /etc/apache2/httpd.conf sudo vi /etc/apache2/httpd.conf 4. Put the following in the co.. 더보기
Set java path 바탕화면 - 내 컴퓨터 - 속성 - 고급 - 환경 변수 기존 변수에 path, classpath가 있다면 편집을 눌러서 변수 값 추가 시키면 되고, 없다면 새로 만들기 눌러서 만들면 된다. 1. path 시스템 변수 변수 이름 : path 변수 값 : c:\j2sdk1.4.2_15\bin; 제일 앞에 추가 2. java_home 시스템 변수 변수 이름 : JAVA_HOME 변수 값 : c:\j2sdk1.4.2_15; 추가 3. classpath 시스템 변수 변수이름 : CLASSPATH 변수 값 : 제일 앞에 ".;"를 추가 한다. java Hello( classpath 설정시 구분 ";" 으로 한다. ex) . or .; 기존경로; 등등 더보기