Java Canonical Path Create getCanonicalPath(String outputPath)

Here you can find the source of getCanonicalPath(String outputPath)

Description

get Canonical Path

License

Open Source License

Parameter

Parameter Description
outputPath a parameter

Declaration

public static String getCanonicalPath(String outputPath) 

Method Source Code

//package com.java2s;
/*//from www  . j a  va  2  s.co m
 * Copyright (C) 2010, 2011, 2012 by Arne Kesting, Martin Treiber, Ralph Germ, Martin Budden
 * <movsim.org@gmail.com>
 * -----------------------------------------------------------------------------------------
 * 
 * This file is part of
 * 
 * MovSim - the multi-model open-source vehicular-traffic simulator.
 * 
 * MovSim 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.
 * 
 * MovSim 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 MovSim. If not, see <http://www.gnu.org/licenses/>
 * or <http://www.movsim.org>.
 * 
 * -----------------------------------------------------------------------------------------
 */

import java.io.File;

import java.io.IOException;

public class Main {
    /**
     * @param outputPath
     * @return
     */
    public static String getCanonicalPath(String outputPath) {
        final File file = new File(outputPath);
        String path = null;
        try {
            path = file.getCanonicalPath();
        } catch (final IOException e) {
            e.printStackTrace();
        }
        return path;
    }
}

Related

  1. getCanonicalPath(IPath fullPath)
  2. getCanonicalPath(String basePath, String path)
  3. getCanonicalPath(String filePath, String prefix)
  4. getCanonicalPath(String inPath)
  5. getCanonicalPath(String name)
  6. getCanonicalPath(String path)
  7. getCanonicalPath(String path)
  8. getCanonicalPath(String path)
  9. getCanonicalPath(String path)