How to get the binary name of a java class, if one has only the fully qualified name?

后端 未结 3 2284
不思量自难忘°
不思量自难忘° 2021-02-19 07:01

The reflection classes and methods as well as class loaders etc. need the so called \"binary\" names of classes to work with.

The question is, how does one get the binar

3条回答
  •  闹比i
    闹比i (楼主)
    2021-02-19 07:39

    It now sounds like you want to get the fully qualified name (FQN) from the canonical name. As that is different from working from a simple name I'll add a second answer.

    The Sun javac command will not compile a classes if a canonical name conflict would result. However by compiling separately you can still get two different classes with the same canonical name.

    An example:

    File src1\com\stack\Test.java

    package com.stack;
    
    public class Test {
        public static class Example {
            public static class Cow {
                public static class Hoof {
                }
            }
        }
    
        public static void main(String[] args) throws Exception {
            Class cl1 = Class.forName("com.stack.Test$Example$Cow$Hoof");
            Class cl2 = Class.forName("com.stack.Test.Example.Cow.Hoof");
            System.out.println(cl1.getName());
            System.out.println(cl1.getSimpleName());
            System.out.println(cl1.getCanonicalName());
            System.out.println();
            System.out.println(cl2.getName());
            System.out.println(cl2.getSimpleName());
            System.out.println(cl2.getCanonicalName());
        }
    }
    

    File src2\com\stack\Test\Example\Cow\Hoof.java

    package com.stack.Test.Example.Cow;
    
    public class Hoof { }
    

    Then to compile and execute:

    set CLASSPATH=
    mkdir bin1 bin2
    javac -d bin1 -sourcepath src1 src1\com\stack\Test.java
    javac -d bin2 -sourcepath src2 src2\com\stack\Test\Example\Cow\Hoof.java
    
    set CLASSPATH=bin1;bin2
    java com.stack.Test
    

    Producing the output:

    com.stack.Test$Example$Cow$Hoof
    Hoof
    com.stack.Test.Example.Cow.Hoof
    
    com.stack.Test.Example.Cow.Hoof
    Hoof
    com.stack.Test.Example.Cow.Hoof
    

    Thus two classes have the same canonical name but different FQNs. Even if two classes have the same FQN and same canonical name, they can still be different if they are loaded via different class loaders.

    To resolve your issue I see several ways forward you could take.

    First you can specify that you match the class with the least amount of nesting and hence the least number of '$'s in the FQN. UPDATE It turns out Sun javac does the exact opposite of this and matches the class with the most nesting.

    Second you can test all possible FQNs and throw an exception if there is more than one.

    Third, accept that the only unique mapping is with the FQN then only within a specified class loader and re-work you application appropriately. I find it convenient to use the thread context class loader as a default class loader.

提交回复
热议问题