I need to get the name and path of some of my classes and am having an issue.
this code looks like it should work but give me an out put of:
/////////////////////.class
package test;
public class TestingClassName {
public static void main(String[] args)
{
System.out.println(
TestingClassName.class.getName().replaceAll(".", "/") + ".class");
}
}