我使用一个库来返回套接字的句柄。有了这个句柄,我需要从中读取和写入。我宁愿使用QTcpSocket,因为它比使用read()/ write()更容易。有没有办法在已打开的套接字上使用QTcpSocket而不是让QTcpSocket打开套接字?
答案 0 :(得分:5)
也许您可以将QTcpSocket与现有的套接字描述符一起使用:
allRows.each { String[] theLine ->
String newDate = theLine[0].replaceAll('-', '')
writer.writeLine(newDate + theLine[1..-1])
}
现在你可以读写socket
了