Here you can find the source of formatPath(String inputPath)
public static String formatPath(String inputPath)
//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*/ }