Here you can find the source of packageToDir(String packages)
public static String packageToDir(String packages)
//package com.java2s; //License from project: Apache License public class Main { public static String packageToDir(String packages) { String dir = packages;//from w w w . j av a 2 s . com if (packages != null && packages.length() > 1) { dir = packages.replaceAll("[.]", "/"); } return dir; } }