当前位置: 首页 > news >正文

哪里学做网站线上活动策划方案

哪里学做网站,线上活动策划方案,wordpress gallery类型,进入网站后台代码我最喜欢的事情之一是解析代码并对其执行自动操作。 因此#xff0c;我开始为JavaParser做出贡献#xff0c;并创建了两个相关项目#xff1a; java-symbol-solver和Effectivejava 。 作为JavaParser的贡献者#xff0c;我反复阅读了一些非常类似的问题#xff0c;这些问… 我最喜欢的事情之一是解析代码并对其执行自动操作。 因此我开始为JavaParser做出贡献并创建了两个相关项目 java-symbol-solver和Effectivejava 。 作为JavaParser的贡献者我反复阅读了一些非常类似的问题这些问题涉及从Java源代码提取信息。 因此我认为我可以帮助提供一些简单的示例以帮助您开始解析Java代码。 Github上提供了所有源代码 analyzer-java-code-examples 通用代码 使用JavaParser theere时我们总是希望进行很多操作。 通常我们希望对整个项目进行操作因此在给定目录的情况下我们将探索所有Java文件。 此类应有助于完成此任务 package me.tomassetti.support;import java.io.File;public class DirExplorer {public interface FileHandler {void handle(int level, String path, File file);}public interface Filter {boolean interested(int level, String path, File file);}private FileHandler fileHandler;private Filter filter;public DirExplorer(Filter filter, FileHandler fileHandler) {this.filter filter;this.fileHandler fileHandler;}public void explore(File root) {explore(0, , root);}private void explore(int level, String path, File file) {if (file.isDirectory()) {for (File child : file.listFiles()) {explore(level 1, path / child.getName(), child);}} else {if (filter.interested(level, path, file)) {fileHandler.handle(level, path, file);}}}} 对于每个Java文件我们首先要为每个Java文件构建一个抽象语法树AST然后对其进行导航。 这样做有两种主要策略 使用访客要在特定类型的AST节点上进行操作时这是正确的策略 使用递归迭代器这允许处理所有类型的节点 可以编写访问者扩展JavaParser中包含的类而这是一个简单的节点迭代器 package me.tomassetti.support;import com.github.javaparser.ast.Node;public class NodeIterator {public interface NodeHandler {boolean handle(Node node);}private NodeHandler nodeHandler;public NodeIterator(NodeHandler nodeHandler) {this.nodeHandler nodeHandler;}public void explore(Node node) {if (nodeHandler.handle(node)) {for (Node child : node.getChildrenNodes()) {explore(child);}}} } 现在让我们看看如何使用此代码解决Stack Overflow上的一些问题。 如何从Java类中提取普通字符串中所有类的名称 在堆栈溢出时询问 寻找ClassOrInterfaceDeclaration节点可以解决此解决方案。 给定我们想要一种特定类型的节点我们可以使用访客。 请注意VoidVisitorAdapter允许传递任意参数。 在这种情况下我们不需要这样做因此我们指定对象类型而在访问方法中将其忽略即可。 package me.tomassetti.examples;import com.github.javaparser.JavaParser; import com.github.javaparser.ParseException; import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; import com.github.javaparser.ast.visitor.VoidVisitorAdapter; import com.google.common.base.Strings; import me.tomassetti.support.DirExplorer;import java.io.File; import java.io.IOException;public class ListClassesExample {public static void listClasses(File projectDir) {new DirExplorer((level, path, file) - path.endsWith(.java), (level, path, file) - {System.out.println(path);System.out.println(Strings.repeat(, path.length()));try {new VoidVisitorAdapterObject() {Overridepublic void visit(ClassOrInterfaceDeclaration n, Object arg) {super.visit(n, arg);System.out.println( * n.getName());}}.visit(JavaParser.parse(file), null);System.out.println(); // empty line} catch (ParseException | IOException e) {new RuntimeException(e);}}).explore(projectDir);}public static void main(String[] args) {File projectDir new File(source_to_parse/junit-master);listClasses(projectDir);} } 我们在JUnit的源代码上运行示例并获得以下输出 /src/test/java/org/junit/internal/MethodSorterTest.java * DummySortWithoutAnnotation* Super* Sub* DummySortWithDefault* DummySortJvm* DummySortWithNameAsc* MethodSorterTest/src/test/java/org/junit/internal/matchers/StacktracePrintingMatcherTest.java * StacktracePrintingMatcherTest/src/test/java/org/junit/internal/matchers/ThrowableCauseMatcherTest.java * ThrowableCauseMatcherTest... ... many other lines follow是否有Java代码解析器可以返回组成语句的行号 在堆栈溢出时询问 在这种情况下我需要查找各种语句。 现在有几个类扩展了Statement基类因此我可以使用一个访问者但我需要在几种访问方法中编写相同的代码一个用于Statement的每个子类。 另外我只想获取顶层语句而不要获取其中的语句。 例如一个for语句可以包含其他几个语句。 使用我们的自定义NodeIterator我们可以轻松实现此逻辑。 package me.tomassetti.examples;import com.github.javaparser.JavaParser; import com.github.javaparser.ParseException; import com.github.javaparser.ast.Node; import com.github.javaparser.ast.stmt.Statement; import com.google.common.base.Strings; import me.tomassetti.support.DirExplorer; import me.tomassetti.support.NodeIterator;import java.io.File; import java.io.IOException;public class StatementsLinesExample {public static void statementsByLine(File projectDir) {new DirExplorer((level, path, file) - path.endsWith(.java), (level, path, file) - {System.out.println(path);System.out.println(Strings.repeat(, path.length()));try {new NodeIterator(new NodeIterator.NodeHandler() {Overridepublic boolean handle(Node node) {if (node instanceof Statement) {System.out.println( [Lines node.getBeginLine() - node.getEndLine() ] node);return false;} else {return true;}}}).explore(JavaParser.parse(file));System.out.println(); // empty line} catch (ParseException | IOException e) {new RuntimeException(e);}}).explore(projectDir);}public static void main(String[] args) {File projectDir new File(source_to_parse/junit-master);statementsByLine(projectDir);} } 这是在JUnit的源代码上运行程序所获得的输出的一部分。 /src/test/java/org/junit/internal/matchers/ThrowableCauseMatcherTest.java [Lines 12 - 17 ] {NullPointerException expectedCause new NullPointerException(expected);Exception actual new Exception(expectedCause);assertThat(actual, hasCause(is(expectedCause))); } 您可能会注意到报告的语句跨5个而不是报告的6个12..17是6行。 这是因为我们正在打印该语句的纯净版本删除了白线注释并设置了代码格式。 从Java代码中提取方法调用 在堆栈溢出时询问 对于提取方法调用我们可以再次使用Visitor因此这非常简单并且与我们看到的第一个示例非常相似。 package me.tomassetti.examples;import com.github.javaparser.JavaParser; import com.github.javaparser.ParseException; import com.github.javaparser.ast.expr.MethodCallExpr; import com.github.javaparser.ast.visitor.VoidVisitorAdapter; import com.google.common.base.Strings; import me.tomassetti.support.DirExplorer;import java.io.File; import java.io.IOException;public class MethodCallsExample {public static void listMethodCalls(File projectDir) {new DirExplorer((level, path, file) - path.endsWith(.java), (level, path, file) - {System.out.println(path);System.out.println(Strings.repeat(, path.length()));try {new VoidVisitorAdapterObject() {Overridepublic void visit(MethodCallExpr n, Object arg) {super.visit(n, arg);System.out.println( [L n.getBeginLine() ] n);}}.visit(JavaParser.parse(file), null);System.out.println(); // empty line} catch (ParseException | IOException e) {new RuntimeException(e);}}).explore(projectDir);}public static void main(String[] args) {File projectDir new File(source_to_parse/junit-master);listMethodCalls(projectDir);} } 如您所见该解决方案与列出类的解决方案非常相似。 /src/test/java/org/junit/internal/MethodSorterTest.java [L 58] MethodSorter.getDeclaredMethods(clazz)[L 64] m.isSynthetic()[L 65] m.toString()[L 65] clazz.getName()[L 65] m.toString().replace(clazz.getName() ., )[L 65] names.add(m.toString().replace(clazz.getName() ., ))[L 74] Arrays.asList(EPSILON, BETA, ALPHA, DELTA, GAMMA_VOID, GAMMA_BOOLEAN)[L 75] getDeclaredMethodNames(DummySortWithoutAnnotation.class)[L 76] assertEquals(expected, actual)[L 81] Arrays.asList(SUPER_METHOD)[L 82] getDeclaredMethodNames(Super.class)[L 83] assertEquals(expected, actual)[L 88] Arrays.asList(SUB_METHOD)[L 89] getDeclaredMethodNames(Sub.class)[L 90] assertEquals(expected, actual)[L 118] Arrays.asList(EPSILON, BETA, ALPHA, DELTA, GAMMA_VOID, GAMMA_BOOLEAN)[L 119] getDeclaredMethodNames(DummySortWithDefault.class)[L 120] assertEquals(expected, actual)[L 148] DummySortJvm.class.getDeclaredMethods()[L 149] MethodSorter.getDeclaredMethods(DummySortJvm.class)[L 150] assertArrayEquals(fromJvmWithSynthetics, sorted)[L 178] Arrays.asList(ALPHA, BETA, DELTA, EPSILON, GAMMA_VOID, GAMMA_BOOLEAN)[L 179] getDeclaredMethodNames(DummySortWithNameAsc.class)[L 180] assertEquals(expected, actual)下一步 您可以使用此处介绍的方法回答很多问题浏览AST找到您感兴趣的节点并获取所需的任何信息。 但是我们还需要考虑其他几件事首先如何转换代码。 尽管提取信息非常有用但是重构更加有用。 然后对于更高级的问题我们需要使用java-symbol-solver解析符号。 例如 查看AST我们可以找到一个类的名称但不能找到它间接实现的接口列表 在查看方法调用时我们无法轻易找到该方法的声明。 它在哪个类或接口中声明 我们要调用哪些不同的重载变体 我们将在将来对此进行研究。 希望这些例子可以帮助您入门 翻译自: https://www.javacodegeeks.com/2016/02/getting-started-javaparser-analyzing-java-code-programmatically.html
http://www.pierceye.com/news/86323/

相关文章:

  • 网站建设汽车后市场解决方案济南网络公司排名
  • 个人网站风格做网站维护承包合同
  • 长沙圭塘网站建设公司微信h5制作网站开发
  • 佛山外贸企业网站建设中山市中国建设银行网站
  • 网站分享代码怎么加天津做网站要多少钱
  • 黄岛网站建设公司wordpress滑动验证
  • 做美食网站的特点谷歌收录查询
  • wordpress建站linux企业营销推广策划
  • 网站开发多线程开发网站备案的要求是什么
  • 买衣服的网站排行榜尚义网站建设
  • 浙江省2011年1月高等教育自学考试 网站建设与管理试题与答案锦州做网站公司哪家好
  • 网站中链接怎么做的四秒网站建设
  • 西安长安网站建设制作用asp.net做的网站模板
  • 怎么自己做网站怎么赚钱网站建设用什么字体
  • 宁夏固原建设网站微信如何投放广告
  • 中国做二手房最大的网站wordpress 屏蔽广告
  • 二学一做专题网站足球梦网站建设的基本思路
  • 公司办网站大概多少钱小型网站设计及建设
  • 兼职网站制作电子工程网下载
  • 上海做网站优化哪家好wordpress主题不显示小工具
  • 培训班在哪个网站找深圳微信小程序制作公司
  • 徐州网页关键词优化安卓优化大师app
  • 手机电脑网站 建站程序怎么做网站后门
  • 品牌网站建设咨询仿什么值得买wordpress
  • 万网站长建设网站的需要的工具
  • 做网站需要学jq吗电子信息工程论坛
  • 网站开发需求收集大型门户网站建设 费用
  • 网站登录页面html模板网站空间pdf下载不了
  • 电子商务综合实训报告网站建设杭州市拱墅区建设局网站
  • 品牌形象网站源码企业网站建设报价方案模板