| | |
|
|
|
인터넷 예제는 대부분 XPath로 구현 되어 있어 Eclisp에서 사용하니 XPath 로 표시되는게 아닌가
JDOM2가 되면서 XPath 를 반대하기 시작했다(뭔소리??) 원문: JDOM API http://www.jdom.org/docs/apidocs/org/jd ··· ath.html Class XPath Deprecated. Use XPathFactory/XPathExpression/XPathBuilder instead.
어 정말이네. XPathFactory에 가보면 더 이상 확장 안한다고 한다 원문:JDOM API http://www.jdom.org/docs/apidocs/org/jd ··· ory.html Class XPathFactory JDOM does not extend the core Java XPath API (javax.xml.xpath.XPath).
그럼 XPath 대신 XPathFactory, XPathExpression 쓰기로 하고 다시 조사 시작
/** * XML Document에서 xPath에 해당 하는 모든Element을 반환한다. * @param doc * @param xPath (ex."/root/Items/Item") * @return List<Element> */ public static List<Element> getElements(Document doc, String xPath) { XPathExpression<Element> compile = XPathFactory.instance().compile( xPath, Filters.element()); return compile.evaluate(doc); } /** * XML Document에서 xPath에 첫 번째Element을 반환한다. * @param doc * @param xPath * @return */ public static Element getElement(Document doc,String xPath) { org.jdom2.xpath.XPathExpression<Element> compile = XPathFactory.instance().compile( xPath, Filters.element()); return compile.evaluateFirst(doc); }
/** * XML Document에서 xPath에 해당하는 Element의 Value를 변경한다. * @param doc * @param locationPath * @param value */ public static void setXmlData(Document doc, String xPath, String value) {
try { Element element = getElement(doc, xPath); if (element != null) element.setText(value);
} catch (Exception e) { logger.debug("", e); }
} |
|
|
|
|
|
| http://laedu.net/trackback/34 | |
| |
|
| |
| | |
|
|
|
|
Eclispe로 JavaDoc을 만들려고 Export를 했는데 한글 깨짐이 발생하며 안 만들어 지더라 ㅜㅜ
검색을 했더니 http://blog.lul.kr/5 이분 블러그가 잘되어 있어 그대로 따라했더니 잘되었다. ㅎㅎ
핵심은 Project Properties에서 endcoding UTF-8 으로변경
JavaDoc Generation Vm Oprtion 주기 -locale ko_KR -encoding UTF-8 -charset UTF-8 -docencoding UTF-8
|
|
|
|
|
|
| http://laedu.net/trackback/33 | |
| |
|
| |
| | |
|
|
|
|
요즘 JDOM으로 XML 파서를 만들고 있다 JDOM은 예제도 많아서 쉽게 될거라 생각했는데 시작부터
org/jaxen/NamespaceContext 검색해 보니 JAXEN이 없단다. 확인해 보니 없네 (Maven 사용중이라 pom.xml 확인하였음)
Jaxen을 추가해 보자 Maven Repository : http://mvnrepository.com/ (Maven 사용 하지 않을 경우 Jaxen.jar 다운 받아서 추가해 보자)
Eclispe
이제 Build하여 실행
음 잘되는구만 ㅎㅎ |
|
|
|
|
|
| http://laedu.net/trackback/32 | |
| |
|
| |
| | |
|
|
|
|
Eclipse를 사용하다보면 강제 종료후 다시 실행할때 Failed to create the Java Virtual Machine 라는 오류가 발생할때가 있다
이럴때 Eclipse 폴더에 들어가서 eclipse.ini를 수정하면 된다 -Xmx512m => -Xmx256m
|
|
|
|
|
|
| http://laedu.net/trackback/31 | |
| |
|
| |
| | |
|
|
|
|
*.제어판- 시스템 - 고급 - 환경변수 신규 - JAVA_HOME Path 편집 - ;%JAVA_HOME%\bin\; 추가
|
|
|
|
|
|
| http://laedu.net/trackback/30 | |
| |
|
| |
| | |
|
|
| |
| | |
|
|
|
| | 웹기반 프로그래밍에 관한 것들을 모을 예정이었는데.. | | |
|
|
| |
«
2024년 11월
»
일 |
월 |
화 |
수 |
목 |
금 |
토 |
|
|
|
|
|
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 |
| | |
|
|