Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    /**
     * So hacky I don't want to think about it.
     * 
     * Takes in the xml text (as a string), 
     * looks for a specific phrase ("xmlnsCHANGEME") and modifies
     * it such that it looks right when it comes time to displaying it
     * 
     * 
     * @param namespaceURI
     * @return
     */
    public static String setDataNodeXMLNS(String xmlString) {
        return xmlString.replaceAll("xmlnsCHANGEME", "xmlns");
    }
}