当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing PrintWriter.print()用法及代码示例


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.org大神的英文原创作品 PrintWriter.print()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。