scala中的所有“服务器”示例使用演员,反应堆等…
有人可以告诉我如何写一个死的简单回声服务器和客户端,就像下面的Server和Client的python示例一样:
# A simple echo server import socket host = '' port = 50000 backlog = 5 size = 1024 s = socket.socket(socket.AF_INET,socket.soCK_STREAM) s.bind((host,port)) s.listen(backlog) while 1: client,address = s.accept() data = client.recv(size) if data: client.send(data) client.close()
# A simple echo client import socket host = 'localhost' port = 50000 size = 1024 s = socket.socket(socket.AF_INET,socket.soCK_STREAM) s.connect((host,port)) s.send('Hello,world') data = s.recv(size) s.close() print 'Received:',data
解决方法
您可以在标准库中执行以下操作:
// Simple server import java.net._ import java.io._ import scala.io._ val server = new ServerSocket(9999) while (true) { val s = server.accept() val in = new BufferedSource(s.getInputStream()).getLines() val out = new PrintStream(s.getoutputStream()) out.println(in.next()) out.flush() s.close() }
// Simple client import java.net._ import java.io._ import scala.io._ val s = new Socket(InetAddress.getByName("localhost"),9999) lazy val in = new BufferedSource(s.getInputStream()).getLines() val out = new PrintStream(s.getoutputStream()) out.println("Hello,world") out.flush() println("Received: " + in.next()) s.close()
如果您不介意使用额外的图书馆,您可能会喜欢Finagle.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。