字串格式化输出经常用到,将字串固定输出长度可以使用如下方式格式化输出:
public static void main(String[] args) {
String name = "你好";
name = String.format("%-16s", name);
System.out.println(name+"length"+name.length());
}
输出结果:你好 length16
%-16s :表示输出固定长度16为,如源字串长度不足16位,-表示右侧补空格至16位;
同样,如果想实现固定输出长度16位,长度不足左侧补空格,可使用%16s。
当字串长度超出格式化是固定的长度时,字串:会原样输出:
public static void main(String[] args) {
String name = "你好";
name = String.format("%6s", name);
System.out.println(name+"length"+name.length());
}
输出结果: 你好length6
源字串长度为6,限制左侧补空格至6位长度,输出结果还是源字串,输出字串长度为8
小结:
1.String.format("%s", str);可以对字串进行格式化输出,
如%16s,表示左侧补空格至16位;%-16s表示右侧补空格至16位;
2,如果字串长度已经超过字串固定长度,字串会原样输出。
3.注意:空格长度受“字体”样式影响文章来源:https://www.toymoban.com/news/detail-474394.html
小白搬运工,如需删除请联系我
转载链接:https://blog.csdn.net/servermanage/article/details/103327968文章来源地址https://www.toymoban.com/news/detail-474394.html
到了这里,关于Java格式化字符串输出固定长度,不够长度空格补全长度的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!