0

我有一个 HTML 文档,我需要在其中更新 IMG 标记的 text 和 src 属性。我在 Java 中工作。我想替换 H​​TML 中的以下字符串:DataName、DataText 和 DataIcon。

<body>

<h1 align="center">DataName</h1>

<div class="tabber">

     <div class="tabbertab">
      <h2>Info</h2>
      <p>DataText</p>
     </div>


     <div class="tabbertab">
      <h2>Pictures</h2>
        <div id="album">
            <ul class="gallery">
                <li><a href="#nogo" tabindex="1">1<img src=DataIcon alt="landscape image 1" title="landscape image 1" /></a></li>
                <li><a href="#nogo" tabindex="1">2<img src="C:\thesis\100GreatP\eclipse_ws\test\data\pictures\1\pyramid2.jpg" alt="landscape image 2" title="landscape image 2" /></a></li>
            </ul>
        </div>   
     </div>

     <div class="tabbertab">
      <h2>Video</h2>

     </div>

</div>

虽然我已成功替换字符串 DataName 和 DataText,但我没有成功将 DataIcon 替换为存储在数据库中作为字符串的 imageURL。检查调试表明它只是无法搜索 DataIcon 字符串。我正在使用 HTMLparser,并且我编写了以下类来应用该问题:

public class MyNodeVisitor extends NodeVisitor {
        String name;
        String text;
        String icon;

        public MyNodeVisitor() {

        }

        public MyNodeVisitor(String IconPath, String Name, String Text){
            this.name = Name;
            this.text = Text;
            this.icon = IconPath;
        }

        public void visitStringNode (Text string)
        {
            if (string.getText().equals("DataName")) {
                string.setText(name);
            }

            else if(string.getText().equals("DataIcon")){
                     string.setText(icon);

            }
            else if (string.getText().equals("DataText")){
                  string.setText(text);
            }
        }
    }

该类已以这种方式应用于我的应用程序代码

        NodeList nl = new NodeList();
        String htmlString = null;
        InputStream contentStream = null;
        String textString = null;       
        String resultStr = getDatabaseAttribute(name,"DESCRIPTION");
        String resultStr2 = getDatabaseAttribute(name,"NAME");
        String resultStr3 = getDatabaseAttribute(name,"ICON_path");


        try
        {
            // Read the URL content into a String using the default encoding (UTF-8).
        contentStream = WWIO.openFileOrResourceStream(BROWSER_BALLOON, this.getClass());
            htmlString = WWIO.readStreamToString(contentStream, null);

        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        finally
        {
            WWIO.closeStream(contentStream, resultStr);
        }


        try {
            Parser parser = new Parser(htmlString);
            nl = parser.parse(null);

            nl.visitAllNodesWith(new MyNodeVisitor(resultStr3, resultStr2,resultStr));
            nl.toString();

        } catch (ParserException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        String output = nl.toHtml();

        return output;  

有谁能够帮助我?整个问题是它无法在 IMG 标签中搜索 DataIcon 字符串。谢谢你的帮助。

4

1 回答 1

1

您的img标签不是StringNode。您需要覆盖visitTag(Tag tag)方法并处理Tag对象。

类似的东西(未编译)

public void visitTag(Tag tag) {
    if ("img".equals(tag.getTagName())) {
        if ("DataIcon".equals(tag.getAttribute("src"))) {
            tag.setAttribute("src", icon);
        }
    }        
}
于 2013-03-28T19:20:04.717 回答