static ClassFile openClassFile()

in dubbo-error-code-inspector/src/main/java/org/apache/dubbo/errorcode/extractor/JavassistUtils.java [48:55]


    static ClassFile openClassFile(String classFilePath) {
        try {
            byte[] clsB = FileUtils.openFileAsByteArray(classFilePath);
            return new ClassFile(new DataInputStream(new ByteArrayInputStream(clsB)));
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }