⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 htmldumper.java

📁 HTML解释器JAVA源码
💻 JAVA
字号:
/* * HtmlDumper.java -- Dumps an HTML document tree.  * Copyright (C) 1999 Quiotix Corporation.   * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, as  * published by the Free Software Foundation.   * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License (http://www.gnu.org/copyleft/gpl.txt) * for more details. */package com.quiotix.html.parser;import java.io.*;/**  * Simple HtmlVisitor which dumps out the document to the specified  * output stream.  * * @author Brian Goetz, Quiotix */public class HtmlDumper extends HtmlVisitor {  protected PrintWriter out;  public HtmlDumper(OutputStream os)     { out = new PrintWriter(os); }  public HtmlDumper(OutputStream os, String encoding)    throws UnsupportedEncodingException {    out = new PrintWriter( new OutputStreamWriter(os, encoding) );  }  public void finish()                   { out.flush();               }  public void visit(HtmlDocument.Tag t)        { out.print(t);   }  public void visit(HtmlDocument.EndTag t)     { out.print(t);   }  public void visit(HtmlDocument.Comment c)    { out.print(c);   }  public void visit(HtmlDocument.Text t)       { out.print(t);   }  public void visit(HtmlDocument.Newline n)    { out.println();  }  public void visit(HtmlDocument.Annotation a) { out.print(a);   }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -