我正在尝试使用json与Python进行简单的服务器-客户端交互。但是现在我有一个问题,我的.json文件确实上传了,但是在服务器端却是空的。
你能帮我吗?
import json
import urllib.request
import os
import time
import ftplib
import fileinput
from ftplib import FTP
url = urllib.request.urlopen("http://example.com/path/data.json").read()
rawjson = url.decode("utf-8")
number = input("Bank number: ")
result = json.loads(url)
name = result[number]["name"]
salary = result[number]["salary"]
strsalary = str(salary)
newsalary = input("New salary: ")
os.system("wget http://example.com/path/data.json")
newtext = rawjson.replace(strsalary, newsalary)
textfile = open("data.json", "w")
textfile.write(newtext)
#domain name or server ip:
ftp = FTP('example.com','usr','pswd')
ftp.cwd("/path")
file=open('data.json', 'rb')
ftp.storbinary('STOR data.json', file)
这是客户端脚本,我想通过json与简单的Web服务器(而不是Python服务器)创建客户端服务器交互。
您编写文本文件的代码不会关闭它。因此,在您尝试读取文件进行上传时,文件可能尚未完全刷新到磁盘。
要正确关闭文件,最佳做法是使用with
块:
with open("data.json", "w") as textfile:
textfile.write(newtext)
尽管如果您仅使用文件作为临时存储要上传到FTP的数据/文本的方式,则根本不必使用物理文件。
例如,使用内存中类似文件的对象,例如StringIO
(或StringIO
:]
BytesIO
from io import StringIO
另请参阅ftp.storbinary('STOR data.json', StringIO(newtext))
同样奇怪的是,您使用与上传文件完全不同的API下载文件。您应该使用Can I upload an object in memory to FTP using Python?。与上传类似,您根本不需要将内容存储到本地文件中。您可以将内容下载到内存中。但这超出了此问题的范围。