Here you can find the source of convertInteralNameToResourceName(String type1)
static private String convertInteralNameToResourceName(String type1)
//package com.java2s; //License from project: Apache License public class Main { static private String convertInteralNameToResourceName(String type1) { String result = type1;/*from w w w . jav a 2s .c o m*/ return result + ".class"; } }