Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static void appendXmlTag(StringBuilder sb, String tagName, Object value) {
sb.append("<" + tagName + ">");
sb.append(value);
sb.append("</" + tagName + ">");
}
}