Here you can find the source of relativize(File base, File absolute)
private static String relativize(File base, File absolute)
//package com.java2s; //License from project: Apache License import java.io.*; public class Main { private static String relativize(File base, File absolute) { String relative = base.toURI().relativize(absolute.toURI()).getPath(); return relative; }//from w ww . j ava2 s. co m }