JDom 의 Element 노드 를 새로 만 들 고 하위 노드 와 text 를 추가 합 니 다.

참고:http://stackoverflow.com/questions/15209245/adding-content-to-existing-xml-with-jdom
코드 는 다음 과 같 습 니 다:
Element child = new Element("product");
child.addContent(new Element(categorieelement).setText(product.categorie));
child.addContent(new Element("code").setText(product.code));
child.addContent(new Element(naamelement).setText(product.naamartikel));
child.addContent(new Element(descriptionelement).setText(product.beschrijvingartikel));
child.addContent(new Element("price").setText(prijs));
child.addContent(new Element("image").setText(product.imgurl));

좋은 웹페이지 즐겨찾기