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


Processing PrintWriter用法及代碼示例


Processing, 類PrintWriter用法介紹。

說明

允許字符打印到text-output 流。使用createWriter() 函數創建一個新的PrintWriter 對象。為了正確製作文件,它應該被刷新並且必須用它的flush()close()方法關閉(見上麵的例子)。

例子

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