我正在使用属性字符串来加粗标题名称,并且我想Text
在 javafx 中的对象中打印出来,但我不知道如何。我在网上查看了很多地方,包括 java 文档,但似乎没有任何内容...这就是我想要做的:
AttributedString boldName = new AttributedString("Name: ");
boldName.addAttribute(TextAttribute.WEIGHT, TextAttribute.WEIGHT_BOLD);
String name = innerNode.name;
Text info = new Text(**boldName.something()?** + name);
结果应该是这样的:Name: name,我觉得很简单,但是如何?