编程语言
首页 > 编程语言> > java – 如何连接/组合两个属性字符串?

java – 如何连接/组合两个属性字符串?

作者:互联网

正如标题所述,如何连接两个属性字符串?

AttributedStrings不包含concat方法,当然concat(字符串上的运算符)的快捷方式也不起作用.

使用ctrl F在AttributedString javadocs上搜索“concat”… javadocs甚至没有提到concat,也没有提到任何组合两个属性字符串的方法(https://docs.oracle.com/javase/7/docs/api/java/text/AttributedString.html).

我最终愿望的具体细节:

假设我有2个对象,每个对象有2个字符串. (遵循JSON格式)

{
    "term" : "1s",
    "superScript" : "1"
},
{
    "term" : "1s",
    "superScript" : "2"
}

我需要做的是按以下有序格式组合所有这些术语和上标:

术语上标术语上标

但是,superScripts必须是超级脚本(因此我使用的是AttributedStrings).

解决方法:

对不起,但就我所知,没有简单的方法可以做到这一点.您可以执行以下操作:

AttributedCharacterIterator aci1 = attributedString1.getIterator();
AttributedCharacterIterator aci2 = attributedString2.getIterator();

StringBuilder sb = new StringBuilder();

char ch = aci1.current();
while( ch != CharacterIterator.DONE)
{
    sb.append( ch);
    ch = aci1.next();
}

ch = aci2.current();
while( ch != CharacterIterator.DONE)
{
    sb.append( ch);
    ch = aci2.next();
}

AttributedString combined = new AttributedString( sb.toString());
combined.addAttributes( aci1.getAttributes(), 0, aci1.getEndIndex());
combined.addAttributes( aci2.getAttributes(), aci1.getEndIndex(), aci1.getEndIndex() + aci2.getEndIndex());

标签:java,string-concatenation
来源: https://codeday.me/bug/20190702/1352949.html