일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ssh
- grep
- IntelliJ
- Quartz
- bash
- Mac
- netsh
- Windows
- VirtualBox
- 네트워크
- web.xml
- tomcat
- maVen
- find
- lsof
- resource
- xargs
- Eclipse
- Windows 10
- 단축키
- JavaScript
- import
- vscode
- context
- Source
- port
- plugin
- GIT
- 줄바꿈 문자
- profile
- Today
- Total
목록Dev/Java (163)
develog
quartz-1.8.6/docs/dbTableshttp://svn.terracotta.org/svn/quartz/tags/quartz-1.8.6/docs/dbTables/
The Tomcat JDBC Connection Poolhttp://tomcat.apache.org/tomcat-7.0-doc/jdbc-pool.html
▶ 프로그램 설치 ▶ hosts 확인 127.0.0.1 localhost ▶ Domain 등록 Domain - Add - General - Domain localhost.com 입력 ▶ Java 에서 메일 발송시 주소를 localhost.com 으로 사용
http://sourceforge.net/projects/jacob-project/ ▶ dll 파일 복사- OS: Windows 7 64 bit- 파일: jacob-1.18-x64.dll- 경로: C:\Windows\System32 ▶ classpath 추가- jacob.jar
한글 포함한 문자열을 바이트 단위로 잘라야 하는 경우 아래 코드사용new String("문자열".getBytes("EUC-KR"), start, end, "EUC-KR") Sourcepublic class TestMain { public static void main(String[] args) throws Exception {System.out.println("START");System.out.println("-----------------------------------------"); test("한글입니다");test("AB영어입니"); System.out.println("-----------------------------------------");System.out.println("END");} ..