找回密码
 注册
查看: 1731|回复: 0

R语言:read.socket()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-2-16 19:43:46 | 显示全部楼层 |阅读模式
read.socket(utils)
read.socket()所属R语言包:utils

                                         Read from or Write to a Socket
                                         一个Socket读取或写入

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

read.socket reads a string from the specified socket, write.socket writes to the specified socket.  There is very little error checking done by either.
read.socket读取一个字符串从指定的插座,write.socket写入到指定的插座。是由要么做的非常小的错误检查。


用法----------Usage----------


read.socket(socket, maxlen = 256, loop = FALSE)
write.socket(socket, string)



参数----------Arguments----------

参数:socket
a socket object
一个socket对象


参数:maxlen
maximum length of string to read
最大长度字符串读取


参数:loop
wait for ever if there is nothing to read?
永远的等待,如果有什么读?


参数:string
string to write to socket
字符串写入到socket


值----------Value----------

read.socket returns the string read.
read.socket返回的字符串读取。


作者(S)----------Author(s)----------


Thomas Lumley



参见----------See Also----------

close.socket, make.socket
close.socket,make.socket


举例----------Examples----------


finger <- function(user, host = "localhost", port = 79, print = TRUE)
{
    if (!is.character(user))
        stop("user name must be a string")
    user <- paste(user,"\r\n")
    socket <- make.socket(host, port)
    on.exit(close.socket(socket))
    write.socket(socket, user)
    output <- character(0)
    repeat{
        ss <- read.socket(socket)
        if (ss == "") break
        output <- paste(output, ss)
    }
    close.socket(socket)
    if (print) cat(output)
    invisible(output)
}
## Not run: [#无法运行:]
finger("root")  ## only works if your site provides a finger daemon[#只适用于如果您的网站提供了一个手指的守护]
## End(Not run)[#结束(不运行)]

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2025-1-25 03:45 , Processed in 0.018923 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表