본문 바로가기

Develop

(157)
isNumeric - 문자인지 숫자인지 구분 문자인지 숫자인지 구분 public static boolean isNumeric(String str) { try { double d = Double.parseDouble(str); } catch(NumberFormatException nfe) { return false; } return true; }
DAM File Upload API Uploading files to Adobe Experience Manager DAM using AssetManager API https://helpx.adobe.com/experience-manager/using/uploading-files-aem1.html
어도비 깃허브 http://adobe-marketing-cloud.github.io/#projects
FOP 와 아랍어(Arabic) https://xmlgraphics.apache.org/fop/2.1/configuration.html The Apache™ FOP Project html을 PDF로 변환 아랍어 지원관련http://xmlgraphics.apache.org/fop/2.1/complexscripts.html#fonts_arabic true true ./ ./ 72 72 flate
정규식표현 http://lng1982.tistory.com/141 http://blog.bagesoft.com/178
폰트 파일 업로드 및 ServerFilePath Adding Fonts for Graphic-Rendering https://docs.adobe.com/docs/en/cq/5-6-1/developing/adding_fonts.html Adding Fonts for Graphic-RenderingYou are reading the AEM 5.6.1 version of Adding Fonts for Graphic-Rendering.This version has reached End of core support. For further details see our technical support periods.This documentation is also available for the following versions: AEM 6.2 AEM 6.1 AEM..
Java Decompiler Java Decompiler - http://jd.benow.ca/#jd-gui-download
XSL (eXtensible Stylesheet Language) 이란? XSL (eXtensible Stylesheet Language) 이란? ▪ XML 문서를 presentation 해주기 위한 포맷팅 언어. ▪ xml 문서이다. 1. XSL 의 구성 1) XSLT ( XSL Transformation ) : xml 문서의 구조를 다른 구조로 변환하기 위한 마크업 언어. 2) XPath ( XSL Path Language ) : xml 문서 내에서 특정 part (엘리먼트 or 속성)을 찾아가기 위한 경로 표기 언어. 3) XSL-FO ( XSL Formatting Objects ) : Formatter 프로그램을 통해 XML 문서를 비 XML 문서로 변환하기 위한 마크업 언어. 2. XSL 처리 과정 ▪ Transformation : XML 문서를 다른 구조의 XML ..