Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static String dirtilyAddNamespaceWithPrefixForOracleESB(String rootElement, String xmlDoc) {
        xmlDoc = xmlDoc.replaceAll("<" + rootElement,
                "<" + "ns2:" + rootElement + " " + "xmlns:ns2=\"http://www.oracle.com/esb\"");
        xmlDoc = xmlDoc.replaceAll("</" + rootElement, "</" + "ns2:" + rootElement);
        return xmlDoc;
    }
}