Data. xml 파일 생 성
4060 단어 Data
private void BuildXMLDoc(Map<String, List<WebGameIncome>> map) throws IOException, JDOMException {
// chart;
Element root = new Element("chart");
root.setAttribute("animation", "1");
root.setAttribute("showvalues", "0");
root.setAttribute("caption", "");
root.setAttribute("subcaption", "");
root.setAttribute("numberprefix", "");
root.setAttribute("chartrightmargin", "15");
root.setAttribute("xaxisname", "");
root.setAttribute("yaxisname", "");
root.setAttribute("pyaxisname", "");
root.setAttribute("canvasborderalpha", "0");
root.setAttribute("bgcolor", "FFFFFF");
root.setAttribute("bgratio", "0");
root.setAttribute("bgalpha", "50");
root.setAttribute("showalternatehgridcolor", "0");
root.setAttribute("numdivlines", "0");
root.setAttribute("showyaxisvalues", "0");
root.setAttribute("showlegend", "0");
root.setAttribute("chartleftmargin", "35");
root.setAttribute("charttopmargin", "25");
root.setAttribute("chartbottommargin", "35");
root.setAttribute("drawanchors", "0");
root.setAttribute("bordercolor", "970000");
root.setAttribute("borderalpha", "31");
root.setAttribute("stack100percent", "0");
root.setAttribute("linethickness", "3");
root.setAttribute("basefontsize", "12");
root.setAttribute("themename", "Custom");
// ;
Document Doc = new Document(root);
Element category = new Element("categories");
Element dateSet1 = new Element("dataset");
dateSet1.setAttribute("seriesName", "kxd");
dateSet1.setAttribute("color_cc", "CE0000");
dateSet1.setAttribute("color", "CE0000");
Element dateSet2 = new Element("dataset");
dateSet2.setAttribute("seriesName", "income");
dateSet2.setAttribute("color_cc", "7F7F7F");
dateSet2.setAttribute("color", "7F7F7F");
for (Entry<String, List<WebGameIncome>> entry : map.entrySet()) {
List<WebGameIncome> value = entry.getValue();
if ((value.get(0) != null) && (value.get(0).getKxd() != 0)) {
category.addContent(new Element("category").setAttribute("label", entry.getKey()));
dateSet1.addContent(new Element("set").setAttribute("value", String.valueOf(value.get(0).getKxd())));
dateSet2.addContent(new Element("set").setAttribute("value", String.valueOf(value.get(0).getIncome())));
}
}
root.addContent(category);
root.addContent(dateSet1);
root.addContent(dateSet2);
XMLOutputter XMLOut = new XMLOutputter();
// Data.xml ;
XMLOut.output(Doc, new FileOutputStream(FileUtil.getXMLDataBasePath() + "/xmldata/Data.xml"));
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
pandas 읽기 및 쓰기 Excelpandas 읽기와 쓰기 Excel은 중복된 데이터 가공 작업을 pandas에 맡기고 수동 노동을 절약하며 사용하기도 편리하지만 출력의 형식은 그다지 아름답지 않다.본고는 read_excel()과to_excel()의...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.