Here you can find the source of getRelativeFilePathToCwd(File file)
public static String getRelativeFilePathToCwd(File file)
//package com.java2s; //License from project: Apache License import java.io.File; import java.net.URI; import java.nio.file.Paths; public class Main { public static String getRelativeFilePathToCwd(File file) { URI baseUri = Paths.get(".").toUri(); URI fileUri = file.toURI(); URI relativeUri = baseUri.relativize(fileUri); return relativeUri.getPath(); }/*from w w w . j a v a 2s . c o m*/ }