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


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


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