Java Path Format formatPath(String inputPath)

Here you can find the source of formatPath(String inputPath)

Description

format Path

License

LGPL

Declaration

public static String formatPath(String inputPath) 

Method Source Code

//package com.java2s;
//License from project: LGPL 

import java.io.File;

public class Main {
    public static String formatPath(String inputPath) {
        return new File(inputPath).getAbsolutePath();
    }/*from  ww w.j  a  va 2  s  . c o  m*/
}

Related

  1. formatPath(String path)
  2. formatPath(String path)