2

我想通过网络发送文件,但是向我提出的所有工具和命令都不允许我自动化该过程。

现在我记得java中有一个函数可以让你将文件转换为json base64字符串,然后这个字符串将通过网络发送,然后接收它的机器会将它重建为文件。

我想知道我是否可以在 python 中做那种事情?

有任何想法吗?谢谢!

4

1 回答 1

3

好吧,读取文件和写入文件很容易:

#read from a file
with open("path/to/file", "rb") as read_file:
    contents = read_file.read()
#write to a file
with open("path/to/file", "wb") as write_file:
    write_file.write(contents)

对于 base64 编码,请查看python 文档

通过连接发送数据很简单,您可以通过多种方法来完成 - 我不会在这里解决它,但我会给您一个可以使用的方法列表:

这是一个使用来自http://wiki.python.org/moin/TcpCommunication的套接字的示例

import socket

TCP_IP = '127.0.0.1'
TCP_PORT = 5005
BUFFER_SIZE = 1024
MESSAGE = "Hello, World!"

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((TCP_IP, TCP_PORT))
s.send(MESSAGE)
data = s.recv(BUFFER_SIZE)
s.close()

print "received data:", data
于 2012-10-16T09:52:20.800 回答