Processing, saveTable()
用法介绍。
用法
saveTable(table, filename)
saveTable(table, filename, options)
参数
table
(Table)
要保存到文件的 Table 对象filename
(String)
表应保存到的文件名options
(String)
可以是 "tsv"、"csv"、"bin" 或 "html" 之一
返回
boolean
说明
将 Table 对象的内容写入文件。默认情况下,此文件保存到草图的文件夹中。通过从"Sketch" 菜单中选择“显示草图文件夹”打开此文件夹。
或者,可以使用绝对路径(在 Unix 和 Linux 上以 /开头,或在 Windows 上以驱动器号开头)将文件保存到计算机上的任何位置。
Processing API 加载和保存的所有文件都使用 UTF-8 编码。
例子
Table table;
void setup() {
table = new Table();
table.addColumn("id");
table.addColumn("species");
table.addColumn("name");
TableRow newRow = table.addRow();
newRow.setInt("id", table.getRowCount() - 1);
newRow.setString("species", "Panthera leo");
newRow.setString("name", "Lion");
saveTable(table, "data/new.csv");
}
// Sketch saves the following to a file called "new.csv":
// id,species,name
// 0,Panthera leo,Lion
有关的
相关用法
- Processing saveJSONArray()用法及代码示例
- Processing saveXML()用法及代码示例
- Processing save()用法及代码示例
- Processing saveStrings()用法及代码示例
- Processing saveBytes()用法及代码示例
- Processing saveFrame()用法及代码示例
- Processing saveJSONObject()用法及代码示例
- Processing saturation()用法及代码示例
- Processing scale()用法及代码示例
- Processing splice()用法及代码示例
- Processing super用法及代码示例
- Processing subset()用法及代码示例
- Processing strokeJoin()用法及代码示例
- Processing switch用法及代码示例
- Processing sqrt()用法及代码示例
- Processing serverEvent()用法及代码示例
- Processing shorten()用法及代码示例
- Processing settings()用法及代码示例
- Processing spotLight()用法及代码示例
- Processing setLocation()用法及代码示例
- Processing splitTokens()用法及代码示例
- Processing setResizable()用法及代码示例
- Processing specular()用法及代码示例
- Processing sphere()用法及代码示例
- Processing setup()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 saveTable()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。