jmeter得到的文档数据处理
通过前面jmeter得到的输出文档,这里是txt文档,里面包含了很多条数据,每条数据的结构如下:
【request】
uuid:xxxxxxx
timestamp:xxxxxxxx
No.x question:xxxxxxx
【response】
code:x
answer:xxxxxxxx
uuid:xxxxxxxx
例如:
【request】
uuid: d4135c---------f19ad3f7
timestamp: 172------14175
No.1 question: Does--------ny have a dedicated customer service team? What are the main functions of the team?
【response】
code: 0
answer: Thank you for contactin--------cal Support! Feel free to contact our phone support team at 8--------- to 5 PM, JST (Daily). If in any case your call won't go through or nobody is answering your call, please dial again or wait for a callback within the day. Rest assured we're always here to help you sort things out.-A--------am
uuid: c---------c4d9ab2
这些数据需要查看一下内容是否正确,所以要翻译成中文,由于内容数量较大,使用一些翻译工具不能够很好的完成,一些python的翻译模块是收费翻译,最后想到了这样一个方法:
在最终在得到的txt文档中添加:<pre> ... </pre> 保存后将文件名改为html,使用chrome浏览器打开,使用谷歌翻译,这样效果比较好。