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

📄 outputzipper.java

📁 wekaUT是 university texas austin 开发的基于weka的半指导学习(semi supervised learning)的分类器
💻 JAVA
字号:
/* *    This program is free software; you can redistribute it and/or modify *    it under the terms of the GNU General Public License as published by *    the Free Software Foundation; either version 2 of the License, or *    (at your option) any later version. * *    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 for more details. * *    You should have received a copy of the GNU General Public License *    along with this program; if not, write to the Free Software *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *//* *    OutputZipper.java *    Copyright (C) 2000 Mark Hall * */package weka.experiment;import java.io.File;import java.io.DataOutputStream;import java.io.FileOutputStream;import java.io.IOException;import java.util.zip.GZIPOutputStream;import java.util.zip.ZipOutputStream;import java.util.zip.ZipEntry;/** * OutputZipper writes output to either gzipped files or to a * multi entry zip file. If the destination file is a directory * each output string will be written to an individually named * gzip file. If the destination file is a file, then each * output string is appended as a named entry to the zip file until * finished() is called to close the file. * * @author Mark Hall (mhall@cs.waikato.ac.nz) * @version $Revision: 1.1.1.1 $ */public class OutputZipper {    File m_destination;  DataOutputStream m_zipOut = null;  ZipOutputStream m_zs = null;  /**   * Constructor.   * @param a destination file or directory   * @exception Exception if something goes wrong.   */  public OutputZipper(File destination) throws Exception {     m_destination = destination;    // if a directory is specified then use gzip format, otherwise    // use zip    if (!m_destination.isDirectory()) {      m_zs = new ZipOutputStream(new FileOutputStream(m_destination));      m_zipOut = new DataOutputStream(m_zs);    }      }  /**   * Saves a string to either an individual gzipped file or as   * an entry in a zip file.   * @param outString the output string to save   * @param the name of the file/entry to save it to   * @exception Exception if something goes wrong   */  public void zipit(String outString, String name) throws Exception {    File saveFile;    ZipEntry ze;        if (m_zipOut == null) {      saveFile = new File(m_destination, name+".gz");      DataOutputStream dout = 	new DataOutputStream(new GZIPOutputStream(			     new FileOutputStream(saveFile)));            dout.writeBytes(outString);      dout.close();    } else {      ze = new ZipEntry(name);      m_zs.putNextEntry(ze);      m_zipOut.writeBytes(outString);      m_zs.closeEntry();    }  }  /**   * Closes the zip file.   * @exception Exception if something goes wrong   */  public void finished() throws Exception {    if (m_zipOut != null) {      m_zipOut.close();    }  }  /**   * Main method for testing this class   */  public static void main(String [] args) {        try {      File testF = new File(new File(System.getProperty("user.dir")), 			    "testOut.zip");      OutputZipper oz = new OutputZipper(testF);            /*      OutputZipper oz = new OutputZipper(	      new File(System.getProperty("user.dir"))); */      oz.zipit("Here is some test text to be zipped","testzip");      oz.zipit("Here is a second entry to be zipped","testzip2");      oz.finished();    } catch (Exception ex) {      ex.printStackTrace();      System.err.println(ex.getMessage());    }  }}

⌨️ 快捷键说明

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