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

📄 extractordriver.java

📁 随书的代码
💻 JAVA
字号:
import org.xml.sax.*;import org.xml.sax.helpers.XMLReaderFactory;import java.io.*;public class ExtractorDriver {  public static void main(String[] args) {          if (args.length <= 0) {      System.out.println(       "Usage: java ExtractorDriver url"      );      return;    }              try {      XMLReader parser = XMLReaderFactory.createXMLReader();            // Since this just writes onto the console, it's best      // to use the system default encoding, which is what      // we get by not specifying an explicit encoding here.      Writer out = new OutputStreamWriter(System.out);      ContentHandler handler = new TextExtractor(out);      parser.setContentHandler(handler);          parser.parse(args[0]);            out.flush();    }    catch (Exception e) {      System.err.println(e);     }    } }

⌨️ 快捷键说明

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