當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing PrintWriter.flush()用法及代碼示例


Processing, 類PrintWriter中的flush()用法介紹。

用法

  • pw.flush()

參數

  • 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.flush()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。