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

📄 tablewriter.java

📁 用applet实现很多应用小程序
💻 JAVA
字号:
package prefuse.data.io;

import java.io.File;
import java.io.OutputStream;

import prefuse.data.Table;

/**
 * Interface for classes that write Table data to a particular file format.
 * 
 * @author <a href="http://jheer.org">jeffrey heer</a>
 */
public interface TableWriter {

    /**
     * Write a table to the file with the given filename.
     * @param table the Table to write
     * @param filename the file to write the table to
     * @throws DataWriteException
     */
    public void writeTable(Table table, String filename) throws DataIOException;
    
    /**
     * Write a table to the given File.
     * @param table the Table to write
     * @param f the file to write the table to
     * @throws DataWriteException
     */
    public void writeTable(Table table, File f) throws DataIOException;
    
    /**
     * Write a table from the given OutputStream.
     * @param table the Table to write
     * @param os the OutputStream to write the table to
     * @throws DataWriteException
     */
    public void writeTable(Table table, OutputStream os) throws DataIOException;
    
} // end of interface TableWriter

⌨️ 快捷键说明

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