問題描述
我不理解 JTextPane 中的包裝行為.如果我插入一個短文本,然后是一個 JComponent,然后再插入一個短文本,如果框架足夠大,我可以在一行中看到插入的內容.但是如果文本更長以至于需要多行,組件總是被放置在一個新的行中.
I don't understand the wrapping behavior in a JTextPane. If I insert a short text, then a JComponent and then again the short text I can see the inserted stuff in one line if the frame is large enough of course. But if the text is much longer so that it takes several lines the component is always placed in a new line.
我已經認識到,在將組件插入 JTextPane 后,它的文本會變長一個字符.因此,如果一個組件被 JTextPane 視為一個字符,為什么它的行為不像一個字符?可能取決于java版本嗎?我使用 Java(TM) SE 運行時環境(內部版本 1.7.0-b147)
I have recognized that after a component has been inserted into a JTextPane its text gets longer by one character. So if a component is considered by a JTextPane as a character why doesn't it behave like a character? May it depend on the java version? I use Java(TM) SE Runtime Environment (build 1.7.0-b147)
下面是我的代碼(用 shortText/longText 實例化變量 currentText 以重現上述行為):
Below is my code (instantiate the variable currentText with shortText/longText to reproduce the mentioned behavior):
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.text.BadLocationException;
import javax.swing.text.SimpleAttributeSet;
public class Test {
public static void main(String[] args) {
JFrame frame = new JFrame();
JTextPane textPane = new JTextPane();
textPane.setContentType("text/html");
String shortText = "one two three four five six seven";
String longText = "A text component that can be marked up with attributes that are represented graphically. You can find how-to information and examples of using text panes in Using Text Components, a section in The Java Tutorial. This component models paragraphs that are composed of runs of character level attributes. Each paragraph may have a logical style attached to it which contains the default attributes to use if not overridden by attributes set on the paragraph or character run. Components and images may be embedded in the flow of text.";
String currentText = shortText;
try {
// insert text before the component
textPane.getDocument().insertString(textPane.getDocument().getLength(), currentText,
new SimpleAttributeSet());
textPane.setSelectionStart(textPane.getDocument().getLength());
textPane.setSelectionEnd(textPane.getDocument().getLength());
JComboBox component = new JComboBox();
component.setMaximumSize(component.getPreferredSize());
textPane.insertComponent(component);
// insert text after the component
textPane.getDocument().insertString(textPane.getDocument().getLength(), currentText,
new SimpleAttributeSet());
} catch (BadLocationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
textPane.setEditable(false);
frame.add(new JScrollPane(textPane));
frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
推薦答案
由于您設置的內容類型,這種奇怪的行為似乎發生了.嘗試刪除此行:
That strange behavior seems to happen due to the content type you set. Try removing this line:
textPane.setContentType ( "text/html" );
然后您會發現一切正常.我不確定它為什么會發生 - 可能是一些渲染錯誤或只是預期的行為.
and you will see that everything works fine after that. I am not sure why it happens - might be either some rendering bug or just an intended behavior.
附:我不認為在文本窗格中使用 Swing 組件(無論原因是什么)是一個不錯的選擇.但這只是我的看法...
P.S. I don't think that using Swing components inside text pane (whatever the reason is) is a good option. But that is just my opinion...
這篇關于如何在 JTextPane 中的組件周圍環繞文本?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!