批注中特定于平台的换行符

2022-04-03 00:00:00 annotations newline java

我希望在批注元素中提供的String中使用特定于平台的换行符。

我应该使用下面的什么来代替???

@Scenario(title = "This text should match multiline text from file stored on disk " + ???
        + "saved with platform specific newline character")
当我将???替换为System.lineSeparator()时,我收到编译错误Attribute value must be constant。有什么想法吗?


解决方案

不能将非常数值用作批注的属性。传递给批注的字符串必须是compile-time constant as specified in JLS §15.28。

在类文件中,注释属性直接作为元数据与注释声明存储在一起。因此,从概念上讲,无法在运行时解析特性,因为解析依赖于运行时的属性是必需的。

作为替代方法,您应该对批注的属性进行后处理,例如,只需将字符串的换行符替换为运行时的System.getProperty("line.separator")值。

相关文章