Processing, 类PrintWriter
用法介绍。
说明
允许字符打印到text-output 流。使用createWriter()
函数创建一个新的PrintWriter 对象。为了正确制作文件,它应该被刷新并且必须用它的flush()
和close()
方法关闭(见上面的例子)。
例子
PrintWriter output;
void setup() {
// Create a new file in the sketch directory
output = createWriter("positions.txt");
}
void draw() {
point(mouseX, mouseY);
output.println(mouseX); // Write the coordinate to the file
}
void keyPressed() {
output.flush(); // Writes the remaining data to the file
output.close(); // Finishes the file
exit(); // Stops the program
}
方法
- PrintWriter.print()将数据添加到流中
- PrintWriter.println()将数据添加到流中并开始新行
- PrintWriter.flush()冲洗流
- PrintWriter.close()关闭流
有关的
相关用法
- Processing PrintWriter.print()用法及代码示例
- Processing PrintWriter.close()用法及代码示例
- Processing PrintWriter.println()用法及代码示例
- Processing PrintWriter.flush()用法及代码示例
- Processing Pulse用法及代码示例
- Processing PShader用法及代码示例
- Processing PVector.set()用法及代码示例
- Processing PShape.enableStyle()用法及代码示例
- Processing PImage.pixels[]用法及代码示例
- Processing PVector.mag()用法及代码示例
- Processing PWM.set()用法及代码示例
- Processing PVector.normalize()用法及代码示例
- Processing PVector.limit()用法及代码示例
- Processing PShape用法及代码示例
- Processing PImage.resize()用法及代码示例
- Processing PFont.list()用法及代码示例
- Processing PVector.div()用法及代码示例
- Processing PVector.cross()用法及代码示例
- Processing PShape.setStroke()用法及代码示例
- Processing PVector.random2D()用法及代码示例
- Processing PImage.width用法及代码示例
- Processing PShape.addChild()用法及代码示例
- Processing PShape.isVisible()用法及代码示例
- Processing PShape.getChildCount()用法及代码示例
- Processing PImage.get()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 PrintWriter。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。