Here you can find the source of getRelativePathToWWW(String fileName)
public static String getRelativePathToWWW(String fileName)
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { public static String getRelativePathToWWW(String fileName) { return getRelativePathTo("www", fileName); }// www.java 2 s . co m private static String getRelativePathTo(String dir, String fileName) { return System.getProperty("user.dir") + File.separator + dir + fileName; } }