ViewPathVisitor.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.helper;
  2. import org.dom4j.Attribute;
  3. import org.dom4j.Element;
  4. import org.dom4j.VisitorSupport;
  5. /**
  6.  * @author cbf4Life cbf4life@126.com
  7.  * I'm glad to share my knowledge with you all.
  8.  */
  9. public class ViewPathVisitor extends VisitorSupport {
  10. //获得指定的路径
  11. private String viewPath; 
  12. private String result;
  13. //传递返回结果
  14. public ViewPathVisitor(String _result){
  15. result = _result;
  16. }
  17. @Override
  18. public void visit(Element el){
  19. Attribute att = el.attribute("name");
  20. if(att != null){
  21. if(att.getName().equals("name") && att.getText().equals(result)){
  22. viewPath = el.getText();
  23. }
  24. }
  25. }
  26. public String getViewPath(){
  27. return viewPath;
  28. }
  29. }