Here you can find the source of convertInternalFormToQualifiedClassName( final String classInternalName)
Parameter | Description |
---|---|
classInternalName | a parameter |
public static String convertInternalFormToQualifiedClassName( final String classInternalName)
//package com.java2s; //License from project: Apache License public class Main { /**/*from w w w. j a va2 s .co m*/ * Helper method that converts from the internal class name format (as used in the * Constant Pool) to a fully-qualified class name. No obvious library method to do this * appears to exist, hence this code. If one exists, rip this out. * @param classInternalName * @return */ public static String convertInternalFormToQualifiedClassName( final String classInternalName) { String out = classInternalName.replaceAll("/", "\\."); return out; } }