我有一個字符串miscFlag大小爲100.我需要從索引20開始追加到這個miscFlag作爲0-19保留一些其他信息。然後只在某些位置追加。我們可以使用StringBuilder/StringBuffer來做到這一點嗎?追加到字符串在某些位置
我這是如何試圖做到這一點..
StringBuilder info = new StringBuilder(miscFlag);
info.append(" ");
info.append(Misc.toTimestampLiteral(currentDate));//append this from pos 20
info.append(" ");
info.append(formattedStartTime); //append this from pos 40
這裏我不能指定從哪裏追加的位置。
您可以使用:'info = info.substring(X,Y)+「BLABLA」+ // SO ON'; – Maroun