JDT ASTParser 获取字符串字段的值

发布于 2024-09-04 17:14:12 字数 140 浏览 9 评论 0原文

有没有办法使用 jdt ASTParser 来获取 java 文件中声明的 String 字段的值。实际上我需要的是解决来自其他类的任何可能的依赖关系,例如
公共字符串str =“somethig”+SomeTherClass.SOMETHING_ELSE。

Is there a way to use jdt ASTParser to get the value of a String field declared in a java file. Actually what I need is to resolve any possible dependencies from other classes e.g.
public String str = "somethig"+SomeTherClass.SOMETHING_ELSE.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

格子衫的從容 2024-09-11 17:14:12

我发现了......实际上非常简单......代码如下:

ICompilationUnit cu = ....
ASTParser parser = ASTParser.newParser(AST.JLS3);
parser.setResolveBindings(true);
parser.setSource(cu);
parser.setStatementsRecovery(true);
parser.setBindingsRecovery(true);
ASTNode node = parser.createAST(null);
node.accept(new YourVisitor());

然后在 ASTVisitor 的实现中,您需要在被访问的节点上调用resolveConstantExpressionValue()。

I figured it out ...it was quite simple actually ..here's the code:

ICompilationUnit cu = ....
ASTParser parser = ASTParser.newParser(AST.JLS3);
parser.setResolveBindings(true);
parser.setSource(cu);
parser.setStatementsRecovery(true);
parser.setBindingsRecovery(true);
ASTNode node = parser.createAST(null);
node.accept(new YourVisitor());

Then in your implementation of the ASTVisitor you need to call resolveConstantExpressionValue() on the node being visited.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文