Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 Weave (Web-based Analysis and Visualization Environment)
 Copyright (C) 2008-2011 University of Massachusetts Lowell
    
 This file is a part of Weave.
    
 Weave is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License, Version 3,
 as published by the Free Software Foundation.
    
 Weave is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
    
 You should have received a copy of the GNU General Public License
 along with Weave.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * @param str A String that will be inserted into XML.
     * @return The String with special characters escaped. 
     */
    public static String escapeSpecialCharacters(String str) {
        str = str.replace("&", "&amp;"); // & must be replaced first
        str = str.replace("<", "&lt;");
        str = str.replace(">", "&gt;");
        str = str.replace("\"", "&quot;");
        return str;
    }
}