Here you can find the source of relativize(File base, File child)
public static File relativize(File base, File child)
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { /**//from www . j av a 2s. c o m * Makes a file path relative to the base */ public static File relativize(File base, File child) { return new File(base.toURI().relativize(child.toURI()).getPath()); } }