- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
목록Java (95)
민서네집
How to add source code comments in Thymleaf templates that don't get included in generated HTML?[출처] http://stackoverflow.com/questions/15526140/how-to-add-source-code-comments-in-thymleaf-templates-that-dont-get-included-in Version 2.1 is released so now u can upgrade your libraries and use comments in your code. With this version developers are able to use parser-level comment blocks: and prot..
*. 커맨드 쿼리 + 매개변수 https://www.youtube.com/watch?v=BHNHsIUbcn8
How to add pom.xml to existing Eclipse project?http://stackoverflow.com/questions/11818384/how-to-add-pom-xml-to-existing-eclipse-project
Java Thread Local – How to use and code sample http://veerasundar.com/blog/2010/11/java-thread-local-how-to-use-and-code-sample/ ThreadLocal 을 위 예제와 같이 사용하면 된다. package com.veerasundar; public class ThreadLocalDemo extends Thread { public static void main(String args[]) { Thread threadOne = new ThreadLocalDemo(); threadOne.start(); Thread threadTwo = new ThreadLocalDemo(); threadTwo.start(); } @..
줄바꿈을 포함시킨 정규표현식http://www.androidpub.com/613228 Match multiline text using regular expressionhttp://stackoverflow.com/questions/3651725/match-multiline-text-using-regular-expression 대소문자 구분을 없애는 옵션: (?i) http://mwultong.blogspot.com/2006/12/java-find-string-grep-example.html http://mwultong.blogspot.com/2006/12/java-find-sub-string-in-string.html Regular Expression Test Page for Java http://www...
Java에서 숫자로 된 데이터가 자릿수가 많은데, 소수점 이하도 8자리 이상이고, 소수점 이상도 9개 이상인 숫자를 파일에서 읽어와서 DB에 넣고, Crystal Report로 출력할 일이 있었다. 유효 자릿수도 많고, 소수점 이하도 있다보니 BigInteger 형을 사용 못하고, double 형의 경우 유효자릿수가 16자리라고 한다. 그보다 더 큰 유효자릿수가 필요하고, 실수를 사용해야 한다면, BigDecimal을 사용해야 한다. [참고] http://ir.bagesoft.com/619 유효자릿수가 큰 숫자 데이터를 읽어와야 해서 일단은 Java에서 String 형으로 갖고 있고, DB에 문자형으로 저장했더니, Crystal Report에서 출력할 때 세 자릿수마다 컴마(,)가 안 찍혀 나와서 보기 ..
7. YOUTUBE a. Crystal Reports Tip: Creating Dynamic Parameters https://www.youtube.com/watch?v=kuHs89yyuEc b. Creating Crystal Reports and static parameters using Free Hand SQL https://www.youtube.com/watch?v=FE6RVNKACWU * Webinar Archive Site:http://www.symphonycorp.com/category/crystal-tips Crystal Reports Tips and Tricks 1/12 Part 1https://www.youtube.com/watch?v=eNyuiFXPj8M < SAP 홈페이지에 샘플 프로..
[공개SW 툴 가이드] JUnit http://www.oss.kr/oss_repository9/620415
날짜 서식의 셀을 읽을 때 cell.getType() 값이 Cell.CELL_TYPE_NUMERIC 이 되서 당황했는데,DateUtil.isCellDateFormatted(cell) 의 값이 true 이면String.valueOf(cell.getDateCellValue()); 로 날짜 문자열을 얻으면 된다. 사용 Library: org.apache.poipoi3.11 참조: http://lovelyjk.tistory.com/28http://stackoverflow.com/questions/10857209/issue-reading-in-a-cell-from-excel-with-apache-poi private String getCellValue(FormulaEvaluator formulaEval, Cell..
나는 check box와 같은 Excel FormControl 까지 변환하기를 원했는데, 다음과 같은 코드로는 Form Control들까지 복사되지 않는다. [출처] http://stackoverflow.com/questions/20049922/java-poi-api-convert-from-xlsx-to-xls /** * xlsx 파일(XSSFWorkbook)을 xls 파일(HSSFWorkbook)로 변환하는 메서드. * [참조] http://stackoverflow.com/questions/20049922/java-poi-api-convert-from-xlsx-to-xls * * @param xssfWorkbook * @return */ private HSSFWorkbook convertXlsxToXl..