我有一個javax.swing.text.Document
,我想計算文檔需要呈現自身的邊界框的大小。如何測量/計算文檔需要渲染的大小?
這可能嗎?
這對純文本來說幾乎是微不足道的(height = line count * line height
,width = max width over each line
)但是我怎樣才能用RTF,HTML或其他文件來做到這一點?
我有一個javax.swing.text.Document
,我想計算文檔需要呈現自身的邊界框的大小。如何測量/計算文檔需要渲染的大小?
這可能嗎?
這對純文本來說幾乎是微不足道的(height = line count * line height
,width = max width over each line
)但是我怎樣才能用RTF,HTML或其他文件來做到這一點?
此代碼可能會給你一些想法:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;
public class TextPanePerfectSize extends JFrame
{
JTextField textField;
JTextPane textPane;
public TextPanePerfectSize()
{
textField = new JTextField(20);
textField.setText("add text");
getContentPane().add(textField, BorderLayout.NORTH);
textField.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
try
{
Document doc = textPane.getDocument();
doc.insertString(doc.getLength(), " " + textField.getText(), null);
textField.setText("");
Dimension d = textPane.getPreferredSize();
Rectangle r = textPane.modelToView(textPane.getDocument().getLength());
d.height = r.y + r.height;
textPane.setPreferredSize(d);
getContentPane().validate();
// pack();
}
catch(Exception e2) {}
}
});
JLabel label = new JLabel("Hit Enter to Add Text to Text Pane");
getContentPane().add(label);
JPanel south = new JPanel();
textPane = new JTextPane();
textPane.setText("Some text");
textPane.setEditable(false);
// textPane.setPreferredSize(new Dimension(120, 23));
south.add(textPane);
// getContentPane().add(south, BorderLayout.SOUTH);
getContentPane().add(textPane, BorderLayout.SOUTH);
}
public static void main(String[] args)
{
JFrame frame = new TextPanePerfectSize();
frame.setSize(200, 200);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
對於text component,Document
接口是model,因此Document
確實沒有邊界;但是View
有許多「在模型和視圖座標系之間轉換」的方法。根據目標,可能會有所幫助。
嘗試使用此來衡量固定widht高度。 http://java-sl.com/tip_text_height_measuring.html
getPreferred將返回您的寬度和高度。