All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickntap.tool.html.TextParserCallBack Maven / Gradle / Ivy

There is a newer version: 1.30
Show newest version
package com.clickntap.tool.html;

import com.clickntap.utils.ConstUtils;

import javax.swing.text.MutableAttributeSet;
import javax.swing.text.html.HTML.Tag;
import javax.swing.text.html.HTMLEditorKit.ParserCallback;
import java.io.Writer;

public class TextParserCallBack extends ParserCallback {
    private Writer writer;

    public TextParserCallBack(Writer writer) {
        this.writer = writer;
    }

    public void handleStartTag(Tag tag, MutableAttributeSet attributeSet, int index) {
        try {
            if (tag.breaksFlow())
                writer.write(ConstUtils.SPACE);
        } catch (Exception e) {
        }
    }

    public void handleEndTag(Tag tag, int index) {
        try {
            if (tag.breaksFlow())
                writer.write(ConstUtils.SPACE);
        } catch (Exception e) {
        }
    }

    public void handleText(char[] text, int index) {
        try {
            writer.write(text);
        } catch (Exception e) {
        }
    }

    public void handleSimpleTag(Tag tag, MutableAttributeSet attributeSet, int index) {
        try {
            if (tag.breaksFlow())
                writer.write(ConstUtils.SPACE);
        } catch (Exception e) {
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy