java36 제우스(Jeus) 가상 호스트 등록 방법. 1. "JEUSMain.xml" 에 가상경로 추가. C:\Work\moss_h_new www www COMPONENT container1 MyGroup SHARED 2. www(루트디렉토리)에 "WEB-INF" 디렉토리 생성 3. jeus-web-dd.xml 생성. /www true true true -1 false false false 4. web.xml 생성. ( mimetype 설정안되어있으니 페이지 안뜸.) abs audio/x-mpeg ai application/postscript aif audio/x-aiff aifc audio/x-aiff aiff audio/x-aiff aim application/x-aim art image/x-jg asf video/x-ms-asf asx video/x-.. 2015. 4. 24. Passing String Array Parameter public class StringArrayParameter { public static void main(String[] args) { String[] strArray = new String[]{"Foo","Bar","Baz"}; stringConcat (strArray); Integer[] intArray = new Integer[]{1,2,3}; integerConcat (intArray); } static void stringConcat (String ... strings) { StringBuilder sb = new StringBuilder (); for (int i = 0; i < strings.length; i++) sb.append (strings [i]); System.out.printl.. 2014. 12. 5. Toggle 1 to 0 and 9 to 1 using xor { static int x = 0; // Toggles 1 to 0 and 0 to 1 using xor x ^= 1; // Call the method that expects a 1 or 0 [methodCallHere toggle:x]; } 2014. 11. 28. [JAVA] 랜덤 Random 숫자 생성하기 package net.softm.test; import java.util.Random; public class RandomTest { public static void main(String[] args) throws Exception { exec(); } public static String exec() { String rtn = ""; Random randomGenerator = new Random(); int randomInteger = randomGenerator.nextInt(100); // 0 ~ 99 사이의 int를 랜덤으로 생성 int randomIntegerUniform= randomGenerator.nextInt(); // int를 랜덤으로 생성 long randomLongUniform .. 2014. 6. 12. [JAVA] 접근 변경자 ( public, protected, default, private ) 출처 : http://uniksy1106.tistory.com/173 자바(JAVA)에는 총 4가지의 접근 변경자가 있다. 보통 많이 쓰는 것은 2가자이며, default는 아무것도 쓰지 않으면 적용이 되는 것이다. 그럼 자바(JAVA)에서의 접근 변경자에 대해서 간단히 알아보자 @_@ + 접근 허용 가능 범위 public > protected > default >private 접근 범위는 왼쪽일 수록 크다고 보면된다. 위의 접근 변경자중 가장많이 쓰는 것은 public / private가 아닐까 싶다. 당연히 이부분은 사람마다 조금씩 차이가 있을수 있으나 대부분 이와 같지 않을까 ^^;;; 생각된다. - public : 클래스, 변수, 메소드 생성자 등의 모든 접근을 허용한다. 보통 상수(static .. 2014. 5. 13. [Java] JSP page Directive (1) info 속성 2014. 5. 7. 이전 1 2 3 4 5 6 다음