是否有可能在JTextPane
中获取输入文字的高度?
像素将是伟大的,但任何可以代表它的价值都可以。
例如,我输入了JTextPane
这个:
Lorem Ipsum只是打印和排版的虚拟文本 行业。 Lorem Ipsum一直是业界标准的虚拟文本 自16世纪以来,当一个未知的打印机采用了类型的厨房 把它拼凑成一本样本书。它不仅幸存下来 五个世纪,也是电子排版的飞跃, 基本保持不变。它在20世纪60年代随着推广而普及 释放包含Lorem Ipsum段落的Letraset表格,以及 最近使用像Aldus PageMaker这样的桌面出版软件 包括Lorem Ipsum的版本。
有没有办法获得它的长度值(不是它有多少行)?
我需要这个,因为如果我在其中一行中输入图片,总高度会发生变化,我希望能够知道它的确切变化程度。 JTextPane
,我使用StyledDocument
并且没有html。我制作了SSCCE
,但我使用了两种不同的字体来代替图像,以显示2 JTextPanes
的高度之间的差异。
public class Fonts extends JFrame {
private JPanel contentPane;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Fonts frame = new Fonts();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public Fonts() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 450, 300);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
JTextPane textPane = new JTextPane();
textPane.setEditable(false);
textPane.setFont(new Font("Tahoma", Font.PLAIN, 11));
StyledDocument doc = textPane.getStyledDocument();
JTextPane textPane_1 = new JTextPane();
textPane_1.setFont(new Font("Tahoma", Font.PLAIN, 12));
textPane_1.setEditable(false);
StyledDocument doc1 = textPane_1.getStyledDocument();
String s = "Lorem Ipsum is simply dummy text of the printing and typesetting industry." +
" Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown" +
" printer took a galley of type and scrambled it to make a type specimen book. It has survived not" +
" only five centuries, but also the ";
try {
doc.insertString(0, s, null);
doc1.insertString(0, s, null);
} catch (BadLocationException e) {
e.printStackTrace();
}
GroupLayout gl_contentPane = new GroupLayout(contentPane);
gl_contentPane.setHorizontalGroup(
gl_contentPane.createParallelGroup(Alignment.LEADING)
.addGroup(gl_contentPane.createSequentialGroup()
.addComponent(textPane, GroupLayout.PREFERRED_SIZE, 214, GroupLayout.PREFERRED_SIZE)
.addPreferredGap(ComponentPlacement.RELATED)
.addComponent(textPane_1, GroupLayout.PREFERRED_SIZE, 208, GroupLayout.PREFERRED_SIZE)
.addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
gl_contentPane.setVerticalGroup(
gl_contentPane.createParallelGroup(Alignment.LEADING)
.addGroup(Alignment.TRAILING, gl_contentPane.createSequentialGroup()
.addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(gl_contentPane.createParallelGroup(Alignment.TRAILING, false)
.addComponent(textPane_1, Alignment.LEADING)
.addComponent(textPane, Alignment.LEADING, GroupLayout.DEFAULT_SIZE, 251, Short.MAX_VALUE))
.addContainerGap())
);
contentPane.setLayout(gl_contentPane);
}
}
那么有没有办法获得2个JTextPanes的高度?