gpt4 book ai didi

java - 如何在多行上显示文本并右对齐?

转载 作者:行者123 更新时间:2023-12-01 21:56:56 24 4
gpt4 key购买 nike

我想在多行中显示文本并且文本右对齐。

我尝试将其放入 JTextAreaComponentOrientation.RIGHT_TO_LEF T 但标点符号 (?!) 显示不正确。

enter image description here

最佳答案

您不能为此使用 JTextArea

相反,您需要使用具有自定义段落属性的 JTextPane

下面是一个将每行文本居中的示例。

JTextPane textPane = new JTextPane();
textPane.setText( "one\ntwo\nthree\nfour\nfive\nsix\nseven\neight" );
StyledDocument doc = textPane.getStyledDocument();

// Set alignment to be centered for all paragraphs
SimpleAttributeSet center = new SimpleAttributeSet();
StyleConstants.setAlignment(center, StyleConstants.ALIGN_CENTER);

doc.setParagraphAttributes(0, doc.getLength(), center, false);

关于java - 如何在多行上显示文本并右对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34138787/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com