gpt4 book ai didi

flutter - 如何在 Flutter 应用程序中使用 Socket?

转载 作者:IT老高 更新时间:2023-10-28 12:44:37 28 4
gpt4 key购买 nike

我创建了一个 Flutter 应用程序。我需要将我的应用程序连接到本地网络套接字服务。如下图,我可以使用telnet连接,从服务器发送数据和接收数据。我使用 Flutter web_socket 插件和示例。我可以连接到服务器并发送数据,但我无法捕获(或获取数据,它不显示任何内容。)数据。在 Flutter google 组中,有人建议我使用流而不是 StreamBuilder。

To send data I use;         Q101:_:49785:_:ABCDE
And receive data I get; 1:_:2:_:119351:_:NİYAZİ TOROS

当我使用这个示例 (https://flutter.io/cookbook/networking/web-sockets/) 时,我的套接字服务出现错误:

Q: 28.06.2018 08:53:57->GET / HTTP/1.1
A: 28.06.2018 08:53:57 ->:1:_:1:_:FAIL1

示例:

Last login: Tue Jun 26 15:01:44 on ttys000
Niyazis-MBP:~ niyazitoros$ telnet
telnet> telnet 192.168.1.22 1024
Trying 192.168.1.22...
Connected to 192.168.1.22.
Escape character is '^]'.
Q101:_:49785:_:*************
1:_:2:_:119351:_:NİYAZİ TOROS

基于@Richard Heap 的建议:

import 'dart:async';
import 'dart:convert';
import 'dart:io';

void connect(InternetAddress clientAddress, int port) {
Future.wait([RawDatagramSocket.bind(InternetAddress.anyIPv4, 0)]).then(
(values) {
RawDatagramSocket _socket = values[0];
_socket.listen((RawSocketEvent e) {
print(e);
switch (e) {
case RawSocketEvent.read:
Datagram dg = _socket.receive();
if (dg != null) {
dg.data.forEach((x) => print(x));
}
_socket.writeEventsEnabled = true;
break;
case RawSocketEvent.write:
_socket.send(
new Utf8Codec().encode('Hello from client'), clientAddress, port);
break;
case RawSocketEvent.closed:
print('Client disconnected.');
}
});
});
}

main(List<String> arguments) {
print("Connecting to server..");
var address = new InternetAddress('192.168.1.22');
int port = 1024;
connect(address, port);
}

我明白了:

/Users/niyazitoros/flutter/bin/cache/dart-sdk/bin/dart --enable-asserts --enable-vm-service:59683 /Users/niyazitoros/IdeaProjects/github/untitled/bin/main.dart
Observatory listening on http://127.0.0.1:59683/

Connecting to the server.
RawSocketEvent.write

最佳答案

正如attdona所说,

Your server does not speak the websocket protocol but it exposes a plain tcp socket.

所以你需要一个 TCP 套接字,并且有一个很好的关于 SocketsServerSockets 的教程,你可以找到 here

这是一个片段:

import 'dart:io';
import 'dart:async';

Socket socket;

void main() {
Socket.connect("localhost", 4567).then((Socket sock) {
socket = sock;
socket.listen(dataHandler,
onError: errorHandler,
onDone: doneHandler,
cancelOnError: false);
}).catchError((AsyncError e) {
print("Unable to connect: $e");
});
//Connect standard in to the socket
stdin.listen((data) => socket.write(new String.fromCharCodes(data).trim() + '\n'));
}

void dataHandler(data){
print(new String.fromCharCodes(data).trim());
}

void errorHandler(error, StackTrace trace){
print(error);
}

void doneHandler(){
socket.destroy();
}

关于flutter - 如何在 Flutter 应用程序中使用 Socket?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51077233/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com