|
Elexis: Das führende OpenSource-Arztpraxisprogamm im deutschsprachigen Raum Java doc für Elexis version 2.1.7.dev vom 01.09.2013 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.healthmarketscience.jackcess.ExportUtil
public class ExportUtil
| Nested Class Summary | |
|---|---|
static class |
ExportUtil.Builder
Builder which simplifies configuration of an export operation. |
| Field Summary | |
|---|---|
static java.lang.String |
DEFAULT_DELIMITER
|
static java.lang.String |
DEFAULT_FILE_EXT
|
static char |
DEFAULT_QUOTE_CHAR
|
| Method Summary | |
|---|---|
static void |
exportAll(Database db,
java.io.File dir)
Copy all tables into new delimited text files Equivalent to: exportAll(db, dir, "csv"); |
static void |
exportAll(Database db,
java.io.File dir,
java.lang.String ext)
Copy all tables into new delimited text files Equivalent to: exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE); |
static void |
exportAll(Database db,
java.io.File dir,
java.lang.String ext,
boolean header)
Copy all tables into new delimited text files Equivalent to: exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE); |
static void |
exportAll(Database db,
java.io.File dir,
java.lang.String ext,
boolean header,
java.lang.String delim,
char quote,
ExportFilter filter)
Copy all tables into new delimited text files Equivalent to: exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE); |
static void |
exportFile(Database db,
java.lang.String tableName,
java.io.File f)
Copy a table into a new delimited text file Equivalent to: exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE); |
static void |
exportFile(Database db,
java.lang.String tableName,
java.io.File f,
boolean header,
java.lang.String delim,
char quote,
ExportFilter filter)
Copy a table into a new delimited text file Nearly equivalent to: exportWriter(db, name, new BufferedWriter(f),
header, delim, quote, filter); |
static void |
exportWriter(Cursor cursor,
java.io.BufferedWriter out,
boolean header,
java.lang.String delim,
char quote,
ExportFilter filter)
Copy a table in this database into a new delimited text file. |
static void |
exportWriter(Database db,
java.lang.String tableName,
java.io.BufferedWriter out)
Copy a table in this database into a new delimited text file Equivalent to: exportWriter(db, name, out, false, null, '"',
SimpleExportFilter.INSTANCE); |
static void |
exportWriter(Database db,
java.lang.String tableName,
java.io.BufferedWriter out,
boolean header,
java.lang.String delim,
char quote,
ExportFilter filter)
Copy a table in this database into a new delimited text file. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final java.lang.String DEFAULT_DELIMITER
public static final char DEFAULT_QUOTE_CHAR
public static final java.lang.String DEFAULT_FILE_EXT
| Method Detail |
|---|
public static void exportAll(Database db,
java.io.File dir)
throws java.io.IOException
exportAll(db, dir, "csv");
db - Database the table to export belongs todir - The directory where the new files will be created
java.io.IOExceptionexportAll(Database,File,String),
ExportUtil.Builder
public static void exportAll(Database db,
java.io.File dir,
java.lang.String ext)
throws java.io.IOException
exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE);
db - Database the table to export belongs todir - The directory where the new files will be createdext - The file extension of the new files
java.io.IOExceptionexportFile(Database,String,File,boolean,String,char,ExportFilter),
ExportUtil.Builder
public static void exportAll(Database db,
java.io.File dir,
java.lang.String ext,
boolean header)
throws java.io.IOException
exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE);
db - Database the table to export belongs todir - The directory where the new files will be createdext - The file extension of the new filesheader - If true the first line contains the column names
java.io.IOExceptionexportFile(Database,String,File,boolean,String,char,ExportFilter),
ExportUtil.Builder
public static void exportAll(Database db,
java.io.File dir,
java.lang.String ext,
boolean header,
java.lang.String delim,
char quote,
ExportFilter filter)
throws java.io.IOException
exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE);
db - Database the table to export belongs todir - The directory where the new files will be createdext - The file extension of the new filesheader - If true the first line contains the column namesdelim - The column delimiter, null for default (comma)quote - The quote characterfilter - valid export filter
java.io.IOExceptionexportFile(Database,String,File,boolean,String,char,ExportFilter),
ExportUtil.Builder
public static void exportFile(Database db,
java.lang.String tableName,
java.io.File f)
throws java.io.IOException
exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE);
db - Database the table to export belongs totableName - Name of the table to exportf - New file to create
java.io.IOExceptionexportFile(Database,String,File,boolean,String,char,ExportFilter),
ExportUtil.Builder
public static void exportFile(Database db,
java.lang.String tableName,
java.io.File f,
boolean header,
java.lang.String delim,
char quote,
ExportFilter filter)
throws java.io.IOException
exportWriter(db, name, new BufferedWriter(f),
header, delim, quote, filter);
db - Database the table to export belongs totableName - Name of the table to exportf - New file to createheader - If true the first line contains the column namesdelim - The column delimiter, null for default (comma)quote - The quote characterfilter - valid export filter
java.io.IOExceptionexportWriter(Database,String,BufferedWriter,boolean,String,char,ExportFilter),
ExportUtil.Builder
public static void exportWriter(Database db,
java.lang.String tableName,
java.io.BufferedWriter out)
throws java.io.IOException
exportWriter(db, name, out, false, null, '"',
SimpleExportFilter.INSTANCE);
db - Database the table to export belongs totableName - Name of the table to exportout - Writer to export to
java.io.IOExceptionexportWriter(Database,String,BufferedWriter,boolean,String,char,ExportFilter),
ExportUtil.Builder
public static void exportWriter(Database db,
java.lang.String tableName,
java.io.BufferedWriter out,
boolean header,
java.lang.String delim,
char quote,
ExportFilter filter)
throws java.io.IOException
exportWriter(Cursor.createCursor(db.getTable(tableName)), out, header, delim, quote, filter);
db - Database the table to export belongs totableName - Name of the table to exportout - Writer to export toheader - If true the first line contains the column namesdelim - The column delimiter, null for default (comma)quote - The quote characterfilter - valid export filter
java.io.IOExceptionexportWriter(Cursor,BufferedWriter,boolean,String,char,ExportFilter),
ExportUtil.Builder
public static void exportWriter(Cursor cursor,
java.io.BufferedWriter out,
boolean header,
java.lang.String delim,
char quote,
ExportFilter filter)
throws java.io.IOException
cursor - Cursor to exportout - Writer to export toheader - If true the first line contains the column namesdelim - The column delimiter, null for default (comma)quote - The quote characterfilter - valid export filter
java.io.IOExceptionExportUtil.Builder
|
Elexis: Das führende OpenSource-Arztpraxisprogamm im deutschsprachigen Raum Java doc für Elexis version 2.1.7.dev vom 01.09.2013 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||