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

📄 abstractfilesaver.java

📁 代码是一个分类器的实现,其中使用了部分weka的源代码。可以将项目导入eclipse运行
💻 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. *//* *    AbstractFileSaver.java *    Copyright (C) 2004 Richard Kirkby, Stefan Mutter * */package weka.core.converters;import weka.core.FastVector;import weka.core.Option;import weka.core.OptionHandler;import weka.core.Utils;import java.io.BufferedWriter;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.io.OutputStream;import java.io.OutputStreamWriter;import java.util.Enumeration;/** * Abstract class for Savers that save to a file * * Valid options are: * * -i input arff file <br> * The input filw in arff format. <p> * * -o the output file <br> * The output file. The prefix of the output file is sufficient. If no output file is given, Saver tries to use standard out. <p> * * * @author Richard Kirkby (rkirkby@cs.waikato.ac.nz) * @author Stefan Mutter (mutter@cs.waikato.ac.nz) * @version $Revision: 1.3 $ */public abstract class AbstractFileSaver  extends AbstractSaver  implements OptionHandler, FileSourcedConverter{      /** The destination file. */  private File m_outputFile;    /** The writer. */  private transient BufferedWriter m_writer;    /** The file extension of the destination file. */  private String FILE_EXTENSION;      /** The prefix for the filename (chosen in the GUI). */  private String m_prefix;    /** The directory of the file (chosen in the GUI).*/  private String m_dir;    /** Counter. In incremental mode after reading 100 instances they will be written to a file.*/  protected int m_incrementalCounter;      /**   * resets the options   *   */  public void resetOptions(){           super.resetOptions();     m_outputFile = null;     m_writer = null;     m_prefix = "";     m_dir = "";     m_incrementalCounter = 0;  }      /**   * Gets the writer   *   * @return the BufferedWriter   */  public BufferedWriter getWriter(){         return m_writer;  }    /** Sets the writer to null. */    public void resetWriter(){         m_writer = null;  }    /**   * Gets ihe file extension.   *   * @return the file extension as a string.   */  public String getFileExtension(){         return FILE_EXTENSION;  }  /**   * Gets all the file extensions used for this type of file   *   * @return the file extensions   */  public String[] getFileExtensions() {    return new String[]{getFileExtension()};  }      /**   * Sets ihe file extension.   *   * @param ext the file extension as a string startin with '.'.   */   protected void setFileExtension(String ext){         FILE_EXTENSION = ext;  }      /**   * Gets the destination file.   *   * @return the destination file.   */  public File retrieveFile(){        return m_outputFile;  }   /** Sets the destination file.   * @param outputFile the destination file.   * @throws IOException throws an IOException if file cannot be set   */  public void setFile(File outputFile) throws IOException  {            m_outputFile = outputFile;      setDestination(outputFile);        }    /** Sets the file name prefix   * @param prefix the file name prefix   */    public void setFilePrefix(String prefix){         m_prefix = prefix;  }    /** Gets the file name prefix   * @return the prefix of the filename   */    public String filePrefix(){         return m_prefix;  }    /** Sets the directory where the instances should be stored   * @param dir a string containing the directory path and name   */    public void setDir(String dir){         m_dir = dir;  }    /** Gets the directory   * @return a string with the file name   */    public String retrieveDir(){         return m_dir;  }      /**   * Returns an enumeration describing the available options.   *   * @return an enumeration of all the available options.   */  public Enumeration listOptions() {    FastVector newVector = new FastVector();    newVector.addElement(new Option(	"\tThe input file", 	"i", 1, "-i <the input file>"));        newVector.addElement(new Option(	"\tThe output file", 	"o", 1, "-o <the output file>"));        return newVector.elements();  } /**   * Parses a given list of options. Valid option is:<p>   *      * -i input arff file <br>   * The input filw in arff format. <p>   *   * -o the output file <br>   * The output file. The prefix of the output file is sufficient. If no output file is given, Saver tries to use standard out. <p>   *   *   * @param options the list of options as an array of strings   * @exception Exception if an option is not supported    */  public void setOptions(String[] options) throws Exception {        String outputString = Utils.getOption('o', options);    String inputString = Utils.getOption('i', options);        ArffLoader loader = new ArffLoader();        resetOptions();        if(inputString.length() != 0){        try{            File input = new File(inputString);            loader.setFile(input);            setInstances(loader.getDataSet());        } catch(Exception ex){            throw new IOException("No data set loaded. Data set has to be in ARFF format.");        }    }    else        throw new IOException("No data set to save.");    if (outputString.length() != 0){         //add appropriate file extension        if(!outputString.endsWith(FILE_EXTENSION)){            if(outputString.lastIndexOf('.') != -1)                outputString = (outputString.substring(0,outputString.lastIndexOf('.'))) + FILE_EXTENSION;            else                outputString = outputString + FILE_EXTENSION;        }        try{            File output = new File(outputString);            setFile(output);        } catch(Exception ex) {            throw new IOException("Cannot create output file (Reason: " + ex.toString() + "). Standard out is used.");        }    }  }  /**   * Gets the current settings of the Saver object.   *   * @return an array of strings suitable for passing to setOptions   */  public String [] getOptions() {    String [] options = new String [10];    int current = 0;    if(m_outputFile != null){        options[current++] = "-o"; options[current++] = "" + m_outputFile;    }    else{        options[current++] = "-o"; options[current++] = "";    }    if(getInstances() != null){        options[current++] = "-i"; options[current++] = "" + getInstances().relationName();    }    else{        options[current++] = "-i"; options[current++] = "";    }    while (current < options.length) {      options[current++] = "";    }    return options;  }  /** Cancels the incremental saving process. */    public void cancel(){        if(getWriteMode() == CANCEL){        if(m_outputFile != null && m_outputFile.exists()){            if(m_outputFile.delete())                System.out.println("File deleted.");        }        resetOptions();      }  }    /**   * Sets the destination file (and directories if necessary).   *   * @param file the File   * @exception IOException always   */  public void setDestination(File file) throws IOException {    boolean success = false;    String out = file.getAbsolutePath();    if(m_outputFile != null){        try{            if(file.exists()){                if(file.delete())                    System.out.println("File exists and will be overridden.");                else                    throw new IOException("File already exists.");             }            if(out.lastIndexOf(File.separatorChar) == -1){                success = file.createNewFile();            }            else{                String outPath = out.substring(0,out.lastIndexOf(File.separatorChar));                File dir = new File(outPath);                if(dir.exists())                    success = file.createNewFile();                else{                    dir.mkdirs();                    success = file.createNewFile();                }            }            if(success){                 m_outputFile = file;                setDestination(new FileOutputStream(m_outputFile));            }        } catch(Exception ex){            throw new IOException("Cannot create a new output file (Reason: " + ex.toString() + "). Standard out is used.");        } finally{            if(!success){                System.err.println("Cannot create a new output file. Standard out is used.");                m_outputFile = null; //use standard out            }        }    }  }      /** Sets the destination output stream.   * @param output the output stream.   * @throws IOException throws an IOException if destination cannot be set   */  public void setDestination(OutputStream output) throws IOException {    m_writer = new BufferedWriter(new OutputStreamWriter(output));  }    /** Sets the directory and the file prefix.   * This method is used in the KnowledgeFlow GUI   * @param relationName the name of the relation to save   * @param add additional string which should be part of the filename   */    public void setDirAndPrefix(String relationName, String add){        try{        if(m_dir.equals(""))            m_dir = System.getProperty("user.dir");        if(m_prefix.equals(""))            setFile(new File(m_dir + File.separator + relationName+ add + FILE_EXTENSION));        else           setFile(new File(m_dir + File.separator + m_prefix + "_" + relationName+ add + FILE_EXTENSION));       }catch(Exception ex){        System.err.println("File prefix and/or directory could not have been set.");        ex.printStackTrace();      }  }      /**   * to be pverridden   *   * @return the file type description.   */  public abstract String getFileDescription();  /**   * generates a string suitable for output on the command line displaying   * all available options.   *    * @param saver	the saver to create the option string for   * @return		the option string   */  protected static String makeOptionStr(AbstractFileSaver saver) {    StringBuffer 	result;    Option 		option;        result = new StringBuffer();        // build option string    result.append("\n");    result.append(saver.getClass().getName().replaceAll(".*\\.", ""));    result.append(" options:\n\n");    Enumeration enm = saver.listOptions();    while (enm.hasMoreElements()) {      option = (Option) enm.nextElement();      result.append(option.synopsis() + "\n");      result.append(option.description() + "\n");    }    return result.toString();  }    /**   * runs the given saver with the specified options   *    * @param saver	the saver to run   * @param options	the commandline options   */  public static void runFileSaver(AbstractFileSaver saver, String[] options) {    // help request?    try {      String[] tmpOptions = (String[]) options.clone();      if (Utils.getFlag('h', tmpOptions)) {	System.err.println("\nHelp requested\n" + makeOptionStr(saver));	return;      }    }    catch (Exception e) {      // ignore it    }        try {      // set options      try {	saver.setOptions(options);        }      catch (Exception ex) {	System.err.println(makeOptionStr(saver));	System.exit(1);      }            saver.writeBatch();    }    catch (Exception ex) {      ex.printStackTrace();    }  }}

⌨️ 快捷键说明

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