所以我有一个滚动条,一个JTextPane和代码推送文本到下一行,当它击中边缘,但是有几个问题。JScrollBar的增长不会超过特定的大小,任何大于该大小的文本都不再可见(因为它不在屏幕上),并注释掉textArea。setPreferredSize(新维度(400、1500));导致代码拖到下一行而不能工作。这是我的代码
import javax.swing.*;
import javax.swing.text.*;
import java.awt.*;
import java.awt.event.ActionListener;
public class WordFrame{
private JFrame appFrame;
private JMenuBar menuBar;
private JMenu fileMenu, editMenu, viewMenu;
JMenuItem saveMenuItem, openMenuItem, newMenuItem, exitMenuItem, fontMenuItem;
JTextPane textArea = new JTextPane();
static final int WIDTH = 1280, HEIGHT = 980;
private JScrollPane scrollBar = new JScrollPane(textArea);
JPanel wordPanel = new JPanel();
JFileChooser fileChooser = new JFileChooser();
private int textHeight = 12;
private Font defaultFont = new Font(Font.SANS_SERIF, 2, textHeight);
public WordFrame(){
appFrame = new JFrame();
setUI();
addMenuBar();
textArea.setFont(defaultFont);
}
public JFrame getAppFrame(){
return appFrame;
}
public void setFrameVisibility(boolean isVisible){
if(isVisible == true){
appFrame.setVisible(true);
}
else{
appFrame.setVisible(false);
}
}
public void setUI(){
appFrame.setTitle("Word Processor");
appFrame.setIconImage(new ImageIcon(this.getClass().getResource("Bridge.jpg")).getImage());
appFrame.setSize(WIDTH, HEIGHT);
appFrame.setLocation(0,0);
appFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
scrollBar.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
wordPanel.setLayout(new BorderLayout());
//1500 allows for scrollbar thing, if i could make this dynamic it would be sweet
textArea.setPreferredSize(new Dimension(400,1500));
appFrame.add(wordPanel);
appFrame.add(scrollBar);
wordPanel.add(textArea);
// appFrame.add(textArea);
scrollBar.setViewportView(wordPanel);
textArea.setEditorKit(new WrapEditorKit());
}
public void addMenuBar(){
menuBar = new JMenuBar();
fileMenu = new JMenu(" File ");
editMenu = new JMenu("Edit ");
viewMenu = new JMenu("View ");
newMenuItem = new JMenuItem("New");
fileMenu.add(newMenuItem);
fileMenu.addSeparator();
fileMenu.setMnemonic('f');
openMenuItem = new JMenuItem("Open");
fileMenu.add(openMenuItem);
saveMenuItem = new JMenuItem("Save");
fileMenu.add(saveMenuItem);
fileMenu.addSeparator();
exitMenuItem = new JMenuItem("Exit");
fileMenu.add(exitMenuItem);
fontMenuItem = new JMenuItem("Font");
editMenu.add(fontMenuItem);
menuBar.add(fileMenu);
menuBar.add(editMenu);
menuBar.add(viewMenu);
appFrame.setJMenuBar(menuBar);
}
public void setFontSize(int i){
this.textHeight = i;
}
public void addListener(ActionListener listener){
openMenuItem.addActionListener(listener);
exitMenuItem.addActionListener(listener);
saveMenuItem.addActionListener(listener);
fontMenuItem.addActionListener(listener);
}
@SuppressWarnings("serial")
class WrapEditorKit extends StyledEditorKit {
ViewFactory defaultFactory=new WrapColumnFactory();
@Override
public ViewFactory getViewFactory() {
return defaultFactory;
}
}
class WrapColumnFactory implements ViewFactory {
@Override
public View create(Element elem) {
String kind = elem.getName();
if (kind != null) {
if (kind.equals(AbstractDocument.ContentElementName)) {
return new WrapLabelView(elem);
} else if (kind.equals(AbstractDocument.ParagraphElementName)) {
return new ParagraphView(elem);
} else if (kind.equals(AbstractDocument.SectionElementName)) {
return new BoxView(elem, View.Y_AXIS);
} else if (kind.equals(StyleConstants.ComponentElementName)) {
return new ComponentView(elem);
} else if (kind.equals(StyleConstants.IconElementName)) {
return new IconView(elem);
}
}
// default to text display
return new LabelView(elem);
}
}
class WrapLabelView extends LabelView {
public WrapLabelView(Element elem) {
super(elem);
}
@Override
public float getMinimumSpan(int axis) {
switch (axis) {
case View.X_AXIS:
return 0;
case View.Y_AXIS:
return super.getMinimumSpan(axis);
default:
throw new IllegalArgumentException("Invalid axis: " + axis);
}
}
}
}
试着用另一种方式解释它,以防我上面的描述不太好。假设您正在使用MicroSoft Word,当您键入一个句子时,文本会到达文本区域的最右边,此时您将自动转到下一行。最后三个方法(WrapColumnFactory, wrapplabelview, getMinimumSpan(int axis))是推荐给我的代码片段,用于修复一个对我来说不会这样做的错误,因为此时似乎没有任何其他解决新行错误的问题的方法。下一个问题是JScrollBar,在开始时,当你启动应用程序时,垂直的JScrollBar就像我想要的那样,但是JScrollBar只会滚动到目前为止,一旦你从上到下占据了文本区域,JScrollBar允许你滚动,你可以继续输入,但JScrollBar不会增加,也就是说,你不能看到任何文本超过这个点,它就像它达到了最大高度。之后我决定注释掉textArea。我希望滚动条不会在高度上受到限制,但相反发生的是修复新行错误的最后3种方法不做任何事情,因此文本继续从屏幕上绘制,没有增加垂直滚动条的大小,也没有自动新行。感谢您一如既往的帮助。
不要设置JTextPane的首选大小。
代替重写根视图的方法(由ViewFactory返回的section视图)
public float getPreferredSpan(int axis)
返回X和Y轴所需的跨度
。查看如何实现分页
这里的http://java-sl.com/Pagination_In_JEditorPane.html和http://java-sl.com/JEditorPanePrinter.html