Skip to content

Instantly share code, notes, and snippets.

@necronet
Created June 27, 2009 22:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save necronet/137139 to your computer and use it in GitHub Desktop.
Save necronet/137139 to your computer and use it in GitHub Desktop.
import java.io.*;
import javax.swing.*;
import jxl.write.*;
import jxl.*;
public class ExcelTableExporter {
private File file;
private JTable table;
private String nombreTab;
public ExcelTableExporter(JTable table,File file,String nombreTab){
this.file=file;
this.table=table;
this.nombreTab=nombreTab;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment