크롬에서는 window.close(); 가 안먹힙니다.. 아래 코드는 IE , 크롬..먹히는것 확인했습니다. 아마 다른 브라우저도 되지 않나싶습니다. ? 1 window.open(”,’_self’).close();
- Category Archives JAVA
-
-
java에서 string 인코딩 확인방법
String word = s; System.out.println(“utf-8(1) : ” + new String(word.getBytes(“utf-8”), “euc-kr”)); System.out.println(“utf-8(2) : ” + new String(word.ge…
-
ECLPISE가 이상 동작 할때
ECLIPSE가 Control + Click 도 안먹고.. Debug시에 Watching도 안될 때는 jdk 환경 설정이 문제 있을 경우 그럴 수 있다. 해당 프로젝트 속성에서 java compile 부분에 jdk 셋팅 부분을 보면 된다. 또는 debug시에 서버 환경에 오른쪽 버튼을 눌르면. source lookup 이라는 부분이 있는데 여기…
-
JQuery Ajax 통신과 Spring 인수 처리 방법
JQuery의 Ajax통신을 하면 하기와 같이 보낸다. $.ajax({ type:”POST”, url:’http://localhost:8180/GisProject/MainService’, data:{mydata:JSON.stringify(params)}, datatype:”json”, success:function(msg){ console.log(msg);…
-
튜토리얼: 스칼라(Scala), akka 로 scalable 하고, fault-tolerant 한 네트워크 채팅 서버와 클라이언트 만들기
튜토리얼: 스칼라(Scala), akka 로 scalable 하고, fault-tolerant 한 네트워크 채팅 서버와 클라이언트 만들기 SW개발 http://doc.akka.io/docs/akka/1.3.1/scala/tutorial-chat-ser..
-
Intellij에서 Scala + akka 설정
Intellij 13 버전 기준 1. Scala 설치 2. SBT 설치 3. Intellij에서 Scala를 사용하기 위해서는 플러그인으로 Scala와 sbt 둘 다 모두 설치한다. – 설치 후 ‘Setting’에서 위에 설치한 Scala와 SBT를 설정한다. 4. sbt를 통해 라이브러리를 만들기 위해서는 프로젝트에서…
-
UTF-8 인코딩된 파일 읽고 EUC-KR 변경 encoded file read
package com.javawide.files; import java.io.*; public class UTF8Reader { public static void main(String[] args) { UTF8Reader reader = new UTF8Reader(); try { String utf8String = reader.readFully(…
-
JAVA – 한글 인코딩 변환 체크 한방에 끝내기
String word = “무궁화 꽃이 피었습니다.”; System.out.println(“utf-8 -> euc-kr : ” + new String(word.getBytes(“utf-8”), “euc-kr”)); System.out.println(…
-
javascript ==, ===의 의미
0==false// true 0===false// false, because they are of a different type 1==”1″// true, auto type coercion 1===”1″// false, because they are of a different type