Groovy打印变更列表描述时遇到问题



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

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(( 但它没有帮助

您可能需要

使用 getChangelist() 方法来获取包含完整描述的变更列表: https://www.perforce.com/perforce/r17.2/manuals/p4java-javadoc/com/perforce/p4java/server/delegator/IChangeDelegator.html

相关内容

  • 没有找到相关文章

最新更新