使用 ServerSocket 构建网络客户端

Android社区 收藏文章

Create a new socket connection using Socket.connect(). Send data over the socket using the Socket write() method.

import 'dart:io';

main() async {
  var socket = await Socket.connect('127.0.0.1', 4041);
  print(socket.runtimeType);
  socket.write('Hello, World!');
}
相关标签

扫一扫

在手机上阅读