IT 썸네일형 리스트형 eclipse 성능 속도 개선 이클립스 eclispe 최적화 병렬처리 [메모리가 높고 코어수가 유리할때 사용]-XX:+UseParallelGC 이클립스 응답속도 향상 -XX:-UseConcMarkSweepGC 컴파일러의 소수점 최적화 처리 [먼지는 모르겠지만 일단 적용]-XX:+AggressiveOpts 설정Project - properties - java compiler - classfile generation - add variable attributes to generatedAutomatic Updates -> Automatocally find new updates and notify me 해제 이클립스 실행속도 향상유효성 기능 해제HTML Syntax ValidatorJSP content ValidatorJSP Syntax V.. 더보기 eclipse 단축키 단축키 ▶ Ctrl + 3 ⇒ 기술검색해서 사용하기(잘쓰면 좋을듯) ▶ Ctrl + Shift + F ⇒ 자동 줄맞춤.알아서 정렬. ▶ Ctrl + Alt + J ⇒ 소스 한줄로 바꾸기 ( // 주석삭제필수 , 자동줄맞춤이랑 같이써서 한줄로 찾아바꾸기활용 ) ▶ Ctrl + Alt + L ⇒ 소문자형태로바꾸기 ▶ Ctrl + Alt + K ⇒ Calmel표기 anyedit 필요 ▶ Ctrl + W ⇒ 창 끄기. ▶ Ctrl + Shift + O ⇒ import갱신(**********) ▶ Ctrl + Shift + F4 ⇒ 모두 닫기. ▶ Ctrl + Shift + w ⇒ 모두 닫기. ▶ Ctrl + w ⇒ 선택소스닫기 ▶ Ctrl + Shift + L ⇒ 모든 단축키 보기. ▶ Ctrl + L ⇒ 창에.. 더보기 JNLP Java App 서명 및 Key JNLP Java App 서명 및 KeyJNLP 실행을 위한 Java App를 만들었다면 인증을 해야함. //애플릿뷰어실행appletviewer -J-Djava.security.policy=WriteAppletPolicy.policy D:\eGovFrameDev-3.6.0-64bit\workspace\KRRIBIM\src\main\webapp\WEB-INF\jsp\applet\applet.htmlappletviewer -J-Djava.security.policy=WriteAppletPolicy.policy d:\applet\index.htmlappletviewer -J-Djava.security.policy=polfile d:\applet\index.html //접근설정policytool keytool .. 더보기 Tomcat Start Multi Bat Tomcat 멀티 실행Start Bat 생성 Server.xml tomcat-Users.xml Startup_was1.bat @echo offrem Licensed to the Apache Software Foundation (ASF) under one or morerem contributor license agreements. See the NOTICE file distributed withrem this work for additional information regarding copyright ownership.rem The ASF licenses this file to You under the Apache License, Version 2.0rem (the "License"); you may no.. 더보기 C#에서 JAVA 이미지 전송 및 Base64 디코더 C#에서 JAVA 이미지 전송 C#에서 JAVA Binary 전송 C 프로그램에서 JAVA로 이미지 전송시 이미지 디코드 C# 에서 정의 if (method == "POST") { // Convert POST data to a byte array. Byte[] byteArray = Encoding.UTF8.GetBytes(content); request.ContentType = "application/x-www-form-urlencoded; charset=UTF-8; request.ContentLength = byteArray.Length; Stream dataStream = request.GetRequestStream(); dataStream.Write(byteArray, 0, byteArray.Len.. 더보기 Java toByteArray Java toByteArray 파일을 binary 형태로 변형하여 데이터 저장시 사용. final Map files = multiRequest.getFileMap();Iterator itr = files.entrySet().iterator();MultipartFile file;try{FileInputStream is =null;ByteArrayOutputStream bos = new ByteArrayOutputStream();;FileOutputStream fos = null;byte[] buf = new byte[1024]; while(itr.hasNext()) { Entry entry = itr.next();file = entry.getValue();InputStream in = file.getInp.. 더보기 NEW URL Java new URL URL serverobject = new URL(serverUrl); connection = (HttpURLConnection) serverobject.openConnection(); connection.setConnectTimeout(1000); connection.setReadTimeout(3000); connection.setDoOutput(false); connection.setDoInput(true); connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); connection.setRequestProperty("User-Agent", USER_AGENT); connection.s.. 더보기 HTML 외부 프로그램 실행 HTML 외부 프로그램 실행HTML 태그 $("#ifameRun").remove();var iframe = $("").attr("src" ,"AutoRun://")$(document).find("body").append(iframe); Regedit JAVA APP package appRun;import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.io.StringWriter;import java.net.InetSocketAddress; import javax.net.ssl.SSLParameters;import java.. 더보기 JNLP JNLP개요 Java Network Launching Protocol (JNLP) 은 Java Web Start 기술과 관련된 파일 형식 입니다. 웹 브라우저 에서 Java 응용 프로그램을 배포 할 수 있다는 것 입니다. 응용 프로그램과 그 종속성을 설명하는 웹 사이트에 jnlp 파일을 놓은 다음 응용 프로그램을 직접 배포하기 위해이 파일을 가리키는 링크를 놓습니다. 이 작업을 수행하려면 Java가 클라이언트 컴퓨터에 설치되어 있어야합니다. Exemple Nom de l'application Description de l'application -showSavePwd HTML 실행Exemple-1var iframe = $("").attr("src" , "jnlp://1.241.70.128/app/uploa.. 더보기 maxInMemorySize,maxUploadSize 파일 업로드 제한 파일 업로드 용량 제한 파일의 용량을 제한 없이 업로드 maxUploadSize : -1 디스크에 임시 파일 생성하기 전에 메모리에 보관되는 크기maxInMemorySize : 377759039 280MB 까지 업로드 허용하도록 설정됨그 이상은 maxInMemorySize 늘려주면 됨. 더보기 이전 1 2 3 4 5 6 7 ··· 12 다음