Here you can find the source of classFileName(Class> cl)
public static String classFileName(Class<?> cl)
//package com.java2s; //License from project: Open Source License public class Main { public static String classFileName(Class<?> cl) { return cl.getName().replace('.', '/') + ".class"; }/*w ww . j ava 2s .c o m*/ }