firefox控制台中的Jenkins输出有特殊字符

时间:2017-02-20 05:05:02

标签: jenkins jenkins-plugins jenkins-cli

这是在jenkins中运行邮差脚本的输出,同一命令的命令行输出非常清楚,而在jenkins看起来很难看,我搜索了很多解决方案但是无法清除它

我将jenkins作为Windows服务运行

Jenkins demo fixed

→ GET copy
  GET echo.getpostman.com/get [200 OK, 725B, 1017ms]
  ┌
  │ {}
  â””
  √  Body contains Host
  √  Body contains URL

→ Default copy
  POST http://echo.getpostman.com/post [200 OK, 795B, 294ms]
  √  Body contains html
  √  Response time is less than 1000ms

┌─────────────────────────┬──────────┬──────────�
│                         │ executed │   failed │
├─────────────────────────┼──────────┼──────────┤
│              iterations │        1 │        0 │
├─────────────────────────┼──────────┼──────────┤
│                requests │        2 │        0 │
├─────────────────────────┼──────────┼──────────┤
│            test-scripts │        2 │        0 │
├─────────────────────────┼──────────┼──────────┤
│      prerequest-scripts │        0 │        0 │
├─────────────────────────┼──────────┼──────────┤
│              assertions │        4 │        0 │
├─────────────────────────┴──────────┴──────────┤
│ total run duration: 1424ms                    │
├───────────────────────────────────────────────┤
│ total data received: 521B (approx)            │
├───────────────────────────────────────────────┤
│ average response time: 655ms                  │
└───────────────────────────────────────────────┘

请提供清除建议 提前谢谢

1 个答案:

答案 0 :(得分:2)

因为Jenkins中的编码问题。

只需在Jenkins安装中的jenkins.xml文件的 arguments 部分中包含此Java参数 -Dfile.encoding = UTF8

确保您有权编辑该文件。

重新启动Jenkins,你可以看到它正常工作。