从具有Java类完整源代码的String中提取完全限定的类名

时间:2011-12-09 19:24:49

标签: java

如果我在String中拥有Java类的完整源代码,那么查找其完全限定类名的最简单方法是什么?

public class MyParser {

   private MyParser(String code) {
      // Find here the fully qualified name of the class whose full source code 
      // is passed in the code argument.
   }

}

1 个答案:

答案 0 :(得分:1)

使用现有的Java解析器,例如:

http://ws.apache.org/jaxme/js/jparser.html

如果你想处理所有可能的情况,它将比regexp简单得多。