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


Processing Client.write()用法及代码示例


Processing, 类Client中的write()用法介绍。

用法

  • client.write(data)

参数

  • client (Client) 客户端类型的任何变量
  • data (int, byte[], String) 要写入的数据

返回

  • void

说明

将数据写入构建客户端时指定的服务器,或将数据写入从服务器available()方法获得的特定客户端。

例子

// Creates a client that sends input to a server

import processing.net.*; 
Client myClient; 
int clicks;

void setup() { 
  // Connect to the local machine at port 10002.
  // This example will not run if you haven't
  // previously started a server on this port.
  myClient = new Client(this, "127.0.0.1", 10002); 
  // Say hello
  myClient.write("Hi there");
} 

void mouseReleased() {
  // Count the number of mouse clicks:
  clicks++;
  // Tell the server:
  myClient.write("Mouse pressed " + clicks + " times.\n");
}

void draw() { 
  // Change the background if the mouse is pressed
  if (mousePressed) {
    background(255);
  } else {
    background(0);
  }
} 

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 Client.write()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。