- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
private boolean save(Writer writer, int indent) {
StringBuffer nlb = new StringBuffer("\n");
for (int i = 0; i < indent; i++) {
nlb.append("\t");
}
String nl = nlb.toString();
Writer s = writer;
try {
if (this.isRoot()) {
s.append("<?xml version=\"1.0\" encoding=\"");
s.append(Charset.defaultCharset().displayName());
s.append("\"?>");
}
s.append(nl);
s.append("<");
s.append(RegNode.EL_NODE);
s.append(" ");
s.append(RegNode.ATT_NAME);
s.append("=\"");
s.append(this.getName());
s.append("\">");
if (this.getData() != null) {
s.append(nl);
s.append("\t<");
s.append(RegNode.EL_DATA);
s.append(" ");
s.append(RegNode.ATT_TYPE);
s.append("=\"");
s.append(RegNode.getTypeFor(this.getData()));
s.append("\" ");
s.append(RegNode.ATT_ENCODE);
s.append("=\"");
s.append(this.getMethod());
s.append("\">");
s.append(nl);
s.append("\t\t");
s.append(RegNode.encodeData(this.getData(), this.getMethod()));
s.append(nl);
s.append("\t</");
s.append(RegNode.EL_DATA);
s.append(">");
}
for (RegNode child : this.getChildren()) {
s.append("\t");
child.save(s, indent + 1);
}
s.append(nl);
s.append("</");
s.append(RegNode.EL_NODE);
s.append(">");
return true;
} catch (IOException e) {
e.printStackTrace();
}
return false;
}
tr00_gr1m_doomster 10.01.2011 17:18 # +1
3.14159265 10.01.2011 18:07 # +2
алсо
>На сайте проводится профилактика, поэтому гостям нельзя писать комментарии до 1 января 2011. Говнокод.ру благодарит Вас за понимание!
>поэтому гостям нельзя писать комментарии до 1 января 2011
>до 1 января 2011
>благодарит Вас за понимание
Lure Of Chaos 10.01.2011 18:28 # +1
Lure Of Chaos 10.01.2011 18:29 # +1
bugmenot 10.01.2011 18:28 # +1
zlob.jc 17.01.2011 07:13 # +1