0

我想打印特定流的每个更改列表的更改列表描述,但我作为输出得到的描述仅限于某些字符集

changelistList.each { IChangelistSummary cl ->
  println cl.getDescription() 
    }

这给出了有限的 CL 描述,而不是我在 p4V 中看到的完整描述

  printed by script is - "settings IL customization"
  But the actual description is "settings IL customization Fix_For_TDP XXXXX_Additional Services section expanded on both Provide and Change"

任何人都可以帮忙吗?这里有什么问题?我没有收到任何编译错误,脚本执行得很好,只是我没有打印完整的描述我什至尝试使用 println cl.getDescription().toString() 但它没有帮助

4

1 回答 1

1

您可能需要使用该getChangelist()方法来获取具有完整描述的更改列表: https://www.perforce.com/perforce/r17.2/manuals/p4java-javadoc/com/perforce/p4java/server/delegator/IChangeDelegator。 html

于 2018-03-07T22:55:44.417 回答