일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- error
- 튜닝
- 이클립스
- 태그를 입력해 주세요.
- oracle
- Report Designer
- 데이터베이스
- 톰캣
- java
- 기타소득
- DB
- MIP
- Excel
- miplatform
- JavaScript
- Tomcat
- 자바
- 오류
- Eclipse
- 에러
- 성능
- 오라클
- 엑셀
- 함수
- 도서
- 한글
- 마이플랫폼
- JEUS
- 회계
- Book
- Today
- Total
목록java (21)
어느 가을날의 전환점
성능(Performance)이란? - 서버 및 자바 성능에 대한 정의와 이해- Sunny Kwakhttps://docs.com/sunnykwak/5159
Java에서 프로그램 실행 중 잠시 실행을 멈추고 싶을 때 사용. Java 1.5 이전까지만 사용 가능try { Thread.sleep(1000); } catch(InterruptedException ex) { Thread.currentThread().interrupt(); } # TimeUnit - Sleep()try { TimeUnit.NANOSECONDS.sleep(100); TimeUnit.MICROSECONDS.sleep(100); TimeUnit.MILLISECONDS.sleep(100); TimeUnit.SECONDS.sleep(100); TimeUnit.MINUTES.sleep(100); TimeUnit.HOURS.sleep(100); TimeUnit.DAYS.sleep(100); } ca..
* 오류 메시지 : Java Connector. "sapjcorfc.dll already loaded in another classloader" SAP Java Connector(sapjco.jar)는 어플리케이션에 포함시키면 안되며, 서버 상에 하나만 로드되도록 해야 합니다. 1. Be sure sapjco.jar is not included in the WEB-INF folder. 2. Put sapjcorfc.dll and librfc32.dll in c:Windows\system32 3. Put sapjco.jar in c:\Tomcat\common\lib 4. Add a reference to sapjco.jar in the project (In Eclipse: Project/Properties..
1) 발송 시 문자에 대한 인코딩 필요.2) 인코딩 전에 깨지는 경우 플랫폼의 Charset을 확인 후 문자열을 기본 캐릭터셋의 Bytes로 변환 후 다시 원하는 캐릭터셋(euc-kr)으로 재변환하여, 인코딩하여 발송. import java.nio.charset.Charset; ... String sDefaultCharset = Charset.defaultCharset().toString();//Default CharsetString sEncodeMsg = new String(sSubject.getBytes(sDefaultCharset), "euc-kr"); //Encoding message mimeMessage.setSubject(MimeUtility.encodeText(sEncodeMsg, "euc-..
Apache Commons Email * website: http://commons.apache.org/email/ * wiki: http://wiki.apache.org/commons/Email * api: http://commons.apache.org/email/api-release/index.html Commons Email aims to provide a API for sending email. It is built on top of the Java Mail API, which it aims to simplify. Some of the mail classes that are provided are as follows: * SimpleEmail - This class is used to send b..
klocwork http://www.klocwork.com/ CheckStyle - a development tool to help programmers write Java code that adheres to a coding standard - http://checkstyle.sourceforge.net/ FindBugs™ - Find Bugs in Java Programs - http://findbugs.sourceforge.net/ PMD - PMD scans Java source code and looks for potential problems like: 1) Possible bugs - empty try/catch/finally/switch statements 2) Dead code - unu..
java -cp [jdbc경로]:[패키지 전까지 경로] [패키지경로.클래스이름] jdbc드라이버 jar 파일이 /usr/java/jdk1.6.0_29/mysql_jdbc_driver/mysql-connector-java-5.1.17-bin.ja 이고 소스가 home/daniel/java_Workspace/G-Man_Tier_Server/bin 안에 위치해 있고 실행할 메인 클래스의 패키지 주소가 AA.module.tierServer 이고 실행할 메인 클래스 이름이 TierServer.class 일때 아래와 같이 실행 하면된다. ex ) java -cp /usr/java/jdk1.6.0_29/mysql_jdbc_driver/mysql-connector-java-5.1.17-bin.jar:/home/dani..
PURPOSEJDBC CLIENT PROGRAM 에서 NLS_LANGUAGE , NLS_TERRITORY 등 을 바꾸는 방법을 sample 을 통해서 알아 봅니다. Explanation 다음 예제에서는 먼저 DB 에 default 로 설정되어 있는 NLS_LANG 관련 설정사항들을 보여주고 그 다음 US 로 설정을 바꾼후에 바뀐 NLS_LANG 관련 parameter 들의 값을 보여 줍니다. Example NLSTest.java 파일 import java.sql.*; import java.util.*; public class NLSTest { public static void main (String args []) throws SQLException { Connection conn; Statement s..
int to String String str = Integer.toString(i); String str = "" + i; String to int int i = Integer.parseInt(str); int i = Integer.valueOf(str).intValue(); double to String String str = Double.toString(d); long to String String str = Long.toString(l); float to String String str = Float.toString(f); String to double double d = Double.valueOf(str).doubleValue(); String to long long l = Long.valueOf..
자바 어플리케이션도 실행 jar ( Executable JAR ) 파일로 작성 하면, jar파일을 더블클릭하여 실행하는 것이 가능합니다만.. 자바어플리케이션을 실행할 PC에 자바구동환경( 자바런타임 JRE )이 미리 설치 되어 있지어야 한다는 약점이 있습니다. 이 때문에 자바 Swing/AWT등으로 작성된 GUI어플리케이션의 경우 어플리케이션 작성 후 Executable JAR파일을 윈도우용 실행 파일(exe)로 감싸는(Wrapping)하는 단계를 거치게 됩니다. Executable JAR 파일을 exe파일로 감싸데는 몇 가지 방법이 있지만 이번 포스팅에서는 launch4j를 이용해 자바 어플리케이션을 exe형태의 파일로 변환하는 방법을 소개토록 하겠습니다. 잠깐 launch4j를 소개하자면 source..