Processing, 类PrintWriter
中的close()
用法介绍。
用法
pw.close()
参数
pw
PrintWriter 类型的任何对象
说明
关闭 PrintWriter
对象。
例子
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
}
相关用法
- Processing PrintWriter.print()用法及代码示例
- Processing PrintWriter.println()用法及代码示例
- Processing PrintWriter.flush()用法及代码示例
- Processing PrintWriter用法及代码示例
- 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.close()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。