온라인으로 지원하는 sql formatter 인 sqlinform ( http://www.sqlinform.com ) 을 좋아하는데,
갑자기. copy & paste 가 안되는 거다.
근데, 바로 위에, 굵은 글씨로 다음과 같이 써있더라.
Problems with cut & paste running Java 1.6.24? Please click here for the solution.
( http://www.sqlinform.com/forum4/read.php?3,467 ) 들어가서 확인해보니,
As part of this security release, it appears that the ability to copy & paste from a computer's clipboard into a Java environment has been deemed a security threat, and therefore disabled. SQLinForm Online software is not preventing the copy/paste function -- the Java program on your computer is preventing it.
In order to fox this issue while waiting the new Java Release, add to your java.policy file the following line and retry
permission java.awt.AWTPermission "accessClipboard";
쉽게, "보안 문제로 제한하고 있으니, java.policy를 수정하여, clipboard 접근을 허용하도록 하여라." 이다.
Windows 7 에서 확인하였고,
방법은 다음과 같습니다.
Java 가 설치된 폴더 (보통: C:\Program Files\Java\jre6\lib\security\ )에서 java.policy 파일을 복사해서,
C:\Users\사용자명\ 에 복사합니다.
그리고, 파일명앞에 . 을 추가해줍니다. 결국 파일은 .java.policy 가 되죠.
그리고, 파일을 editplus 등과 같은 편집기로 열어.
다음 중간의 굵고 빨간색으로 표시된 라인을 추가합니다.
간단하죠? ^^
갑자기. copy & paste 가 안되는 거다.
근데, 바로 위에, 굵은 글씨로 다음과 같이 써있더라.
Problems with cut & paste running Java 1.6.24? Please click here for the solution.
( http://www.sqlinform.com/forum4/read.php?3,467 ) 들어가서 확인해보니,
As part of this security release, it appears that the ability to copy & paste from a computer's clipboard into a Java environment has been deemed a security threat, and therefore disabled. SQLinForm Online software is not preventing the copy/paste function -- the Java program on your computer is preventing it.
In order to fox this issue while waiting the new Java Release, add to your java.policy file the following line and retry
permission java.awt.AWTPermission "accessClipboard";
쉽게, "보안 문제로 제한하고 있으니, java.policy를 수정하여, clipboard 접근을 허용하도록 하여라." 이다.
Windows 7 에서 확인하였고,
방법은 다음과 같습니다.
Java 가 설치된 폴더 (보통: C:\Program Files\Java\jre6\lib\security\ )에서 java.policy 파일을 복사해서,
C:\Users\사용자명\ 에 복사합니다.
그리고, 파일명앞에 . 을 추가해줍니다. 결국 파일은 .java.policy 가 되죠.
그리고, 파일을 editplus 등과 같은 편집기로 열어.
다음 중간의 굵고 빨간색으로 표시된 라인을 추가합니다.
// Standard extensions get all permissions by default
grant codeBase "file:${{java.ext.dirs}}/*" {
permission java.security.AllPermission;
};
// default permissions granted to all domains
grant {
// Allows any thread to stop itself using the java.lang.Thread.stop()
// method that takes no argument.
// Note that this permission is granted by default only to remain
// backwards compatible.
// It is strongly recommended that you either remove this permission
// from this policy file or further restrict it to code sources
// that you specify, because Thread.stop() is potentially unsafe.
// See the API specification of java.lang.Thread.stop() for more
// information.
permission java.lang.RuntimePermission "stopThread";
// allows anyone to listen on un-privileged ports
permission java.net.SocketPermission "localhost:1024-", "listen";
// "standard" properies that can be read by anyone
permission java.awt.AWTPermission "accessClipboard";
permission java.util.PropertyPermission "java.version", "read";
permission java.util.PropertyPermission "java.vendor", "read";
permission java.util.PropertyPermission "java.vendor.url", "read";
permission java.util.PropertyPermission "java.class.version", "read";
permission java.util.PropertyPermission "os.name", "read";
permission java.util.PropertyPermission "os.version", "read";
permission java.util.PropertyPermission "os.arch", "read";
permission java.util.PropertyPermission "file.separator", "read";
permission java.util.PropertyPermission "path.separator", "read";
permission java.util.PropertyPermission "line.separator", "read";
permission java.util.PropertyPermission "java.specification.version", "read";
permission java.util.PropertyPermission "java.specification.vendor", "read";
permission java.util.PropertyPermission "java.specification.name", "read";
permission java.util.PropertyPermission "java.vm.specification.version", "read";
permission java.util.PropertyPermission "java.vm.specification.vendor", "read";
permission java.util.PropertyPermission "java.vm.specification.name", "read";
permission java.util.PropertyPermission "java.vm.version", "read";
permission java.util.PropertyPermission "java.vm.vendor", "read";
permission java.util.PropertyPermission "java.vm.name", "read";
};
'web' 카테고리의 다른 글
| sqlinform copy & paste 안될때, (0) | 2011/03/30 |
|---|---|
| Twitter Badge를 blog에 달아보자! (0) | 2010/05/19 |
| [Chrome] Google Chrome 정식버전 출시 (0) | 2008/12/16 |
| [Chrome] 크롬 0.3.154.9 발표! (0) | 2008/11/03 |
| [정리] WAS, Web Service... (0) | 2008/09/17 |
| [크롬] 구글의 웹브라우져 크롬을 사용하며 느낀점... (0) | 2008/09/04 |




댓글을 달아 주세요