栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

如何使Jsoup白名单接受某些属性内容

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

如何使Jsoup白名单接受某些属性内容

您可以扩展白名单并覆盖isSafeAttribute以执行自定义检查。由于无法直接扩展Whitelist.relaxed(),因此您必须复制一些代码以设置相同的列表:

public class RelaxedPlusDatabase64Images extends Whitelist {    public RelaxedPlusDatabase64Images() {        //copied from Whitelist.relaxed()        addTags("a", "b", "blockquote", "br", "caption", "cite", "pre", "col",     "colgroup", "dd", "div", "dl", "dt", "em", "h1", "h2", "h3", "h4", "h5", "h6",     "i", "img", "li", "ol", "p", "pre", "q", "small", "strike", "strong",     "sub", "sup", "table", "tbody", "td", "tfoot", "th", "thead", "tr", "u",     "ul");        addAttributes("a", "href", "title");        addAttributes("blockquote", "cite");        addAttributes("col", "span", "width");        addAttributes("colgroup", "span", "width");        addAttributes("img", "align", "alt", "height", "src", "title", "width");        addAttributes("ol", "start", "type");        addAttributes("q", "cite");        addAttributes("table", "summary", "width");        addAttributes("td", "abbr", "axis", "colspan", "rowspan", "width");        addAttributes("th", "abbr", "axis", "colspan", "rowspan", "scope", "width");        addAttributes("ul", "type");        addProtocols("a", "href", "ftp", "http", "https", "mailto");        addProtocols("blockquote", "cite", "http", "https");        addProtocols("cite", "cite", "http", "https");        addProtocols("img", "src", "http", "https");        addProtocols("q", "cite", "http", "https");    }    @Override    protected boolean isSafeAttribute(String tagName, Element el, Attribute attr) {        return ("img".equals(tagName)     && "src".equals(attr.getKey())     && attr.getValue().startsWith("data:;base64")) || super.isSafeAttribute(tagName, el, attr);    }}

由于您没有提供要解析的代码或要消毒的HTML,因此我没有对此进行测试。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/570028.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号