我有一个String,我想从其中列出所有存在于其中的HTML标记。有没有可用的图书馆来完成这项工作?

任何信息对我都会非常有帮助。

最佳答案

您可以使用以下代码从字符串中仅提取HTML标记。

    package com.overflow.stack;

    /**
     *
     * @author sarath_sivan
     */

    public class ExtractHtmlTags {

        public static void getHtmlTags(String html) {
            int beginIndex = 0;
            while(beginIndex!=-1) {
                beginIndex = html.indexOf("<", 0);
                int endIndex = html.indexOf(">", beginIndex+1);
                String htmlTag = "";
                try {
                    if(beginIndex!=-1) {
                        htmlTag = html.substring(beginIndex, endIndex+1);
                    }
                } catch(Exception e) {
                    e.printStackTrace();
                }
                System.out.println(htmlTag);
                html = html.substring(endIndex+1, html.length());
            }
        }

        public static void main(String[] args) {
            String html = "<html><body><h2>List HTML tags from a String</h2>hello<br /></body></html>";
            ExtractHtmlTags.getHtmlTags(html);
        }

    }


但是,我不理解您正在尝试使用提取的HTML标签。祝好运!

关于java - 列出字符串中的HTML标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9566218/

10-09 00:15