Here you can find the source of toInternalName(String fullName)
public static String toInternalName(String fullName)
//package com.java2s; //License from project: Open Source License public class Main { public static String toInternalName(String fullName) { return fullName.replace('.', '/'); }/*from w w w .j av a 2s . c o m*/ }