Processing, 类PrintWriter
中的print()
用法介绍。
用法
pw.print(data)
参数
pw
PrintWriter 类型的任何对象data
布尔、字节、字符、颜色、整数、浮点数、字符串
说明
将数据写入PrintWriter
对象流。
例子
PrintWriter output;
void setup() {
// Create a new file in the sketch directory
output = createWriter("positions.txt");
}
void draw() {
point(mouseX, mouseY);
output.print(mouseX + "\t"); // Write the X coordinate to the file
output.println(mouseY); // Write the Y 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.println()用法及代码示例
- Processing PrintWriter.close()用法及代码示例
- 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.print()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。