Java ClassLoader Load getMetadataSpecialSymbolsXml()

Here you can find the source of getMetadataSpecialSymbolsXml()

Description

get Metadata Special Symbols Xml

License

Open Source License

Declaration

public static String getMetadataSpecialSymbolsXml()
            throws URISyntaxException 

Method Source Code

//package com.java2s;
/*/*from  ww w.j av  a  2 s.co m*/
 * Copyright (C) 2016 Netflix, Inc.
 *
 *     This file is part of IMF Conversion Utility.
 *
 *     IMF Conversion Utility is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     IMF Conversion Utility 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 IMF Conversion Utility.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.io.File;
import java.net.URISyntaxException;

public class Main {
    public static String getMetadataSpecialSymbolsXml()
            throws URISyntaxException {
        //noinspection ConstantConditions
        return new File(ClassLoader.getSystemClassLoader()
                .getResource("dpp/metadata-special-symbols.xml").toURI())
                .getAbsolutePath();
    }
}

Related

  1. getInputStream(String name)
  2. getLibKoyaVersion()
  3. getLocalFile(final String aLocalPath)
  4. getLog4jPropertiesLocation()
  5. getManifestInfo()
  6. getPath(final String fileName)
  7. getPath(String resoureLocation)
  8. getProhibitedProxyInterfaces()
  9. getProperties(String bundleName, String fileName)