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


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