代码拉取完成,页面将自动刷新
from Raw_stair import CheckPackage as Cp
def CheckPackage(filename):
allpack = 0 # 收集的所有包数
okpack = 0 # 收集的包中正确的包数
errpack = 0 # 收集的数据包中错误的包数
length = 100 # 数据包中的数据 点长度
# 定义通道计数
ChNum = [0 for i in range(0, 32)] # 通道包数统计
CH = [1, 2, 3, 4, 5, 6, 7, 8, 17, 18, 19, 20, 21, 22, 23, 24, 9, 10, 11, 12, 13, 14, 15, 16, 25, 26, 27, 28, 29, 30,31, 32] # 通道变换
file = "Data/" + filename # 文件名
savefile="Data/result_"+filename
print(file)
with open(file,'r') as fp:
for line in fp.readlines():
allpack+=1
if len(line) < 40:
continue
else:
datalist = line.split()
# print(datalist)
if Cp(datalist, length):
okpack+=1
continue
else:
errpack+=1
with open(savefile,"a") as sf:
sf.write(line)
print(allpack,okpack,errpack)
if __name__ =="__main__":
filename="rawdata.log"
CheckPackage(filename)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。