gpt4 book ai didi

java - 如何限制 JTextArea 的最大行数和列数?

转载 作者:搜寻专家 更新时间:2023-11-01 03:30:37 25 4
gpt4 key购买 nike

我在 JScrollPane 中使用 JTextArea

我想限制可能的最大行数和每行中的最大字符数。

我需要字符串与屏幕上的完全一样,每行都以'\n'结尾(如果后面有另一行)并且用户只能在每行中插入 X 行和 Y 个字符.

我试图限制行数,但由于换行,我不知道到底有多少行,换行在屏幕上可视地开始新行(因为 JTextArea 的宽度)但是在组件的字符串 它实际上是同一行,没有 '\n' 表示换行。我不知道如何在输入时限制每行中的最大字符数。

有两个阶段:

  1. 字符串的输入——确保用户不能在每行中输入 X 行和 Y 个字符。 (即使换行只是视觉上的或用户键入“/n”)
  2. 将字符串插入数据库 - 在点击“确定”后转换字符串,即使用户没有输入它并且该行仅在视觉上换行,每行都将以“/n”结尾。

如果我计算行中的字符数并在行尾插入“/n”,几乎没有问题,这就是我决定分两个阶段进行的原因。在用户输入的第一阶段,我宁愿只在视觉上限制它并强制换行或类似的东西。只有在第二阶段,当我保存字符串时,我才会添加 '/n',即使用户没有在行尾输入它!

有人有想法吗?


我知道我将不得不使用 DocumentFilter 或 StyledDocument。

这是仅将行数限制为 3 的示例代码:(而不是将行中的字符限制为 19)

private JTextArea textArea ;
textArea = new JTextArea(3,19);
textArea .setLineWrap(true);
textArea .setDocument(new LimitedStyledDocument(3));
JScrollPane scrollPane = new JScrollPane(textArea

public class LimitedStyledDocument extends DefaultStyledDocument

/** Field maxCharacters */
int maxLines;

public LimitedStyledDocument(int maxLines) {
maxCharacters = maxLines;
}

public void insertString(int offs, String str, AttributeSet attribute) throws BadLocationException {
Element root = this.getDefaultRootElement();
int lineCount = getLineCount(str);

if (lineCount + root.getElementCount() <= maxLines){
super.insertString(offs, str, attribute);
}
else {
Toolkit.getDefaultToolkit().beep();
}
}

/**
* get Line Count
*
* @param str
* @return the count of '\n' in the String
*/
private int getLineCount(String str){
String tempStr = new String(str);
int index;
int lineCount = 0;

while (tempStr.length() > 0){
index = tempStr.indexOf("\n");
if(index != -1){
lineCount++;
tempStr = tempStr.substring(index+1);
}
else{
break;
}
}
return lineCount;
}
}

最佳答案

以下对我有用:

public class LimitedLinesDocument extends DefaultStyledDocument 
{
private static final String EOL = "\n";

private int maxLines;

public LimitedLinesDocument(int maxLines)
{
this.maxLines = maxLines;
}

public void insertString(int offs, String str, AttributeSet attribute) throws BadLocationException
{
if (!EOL.equals(str) || StringUtils.occurs(getText(0, getLength()), EOL) < maxLines - 1)
{
super.insertString(offs, str, attribute);
}
}
}

其中StringUtils.occurs方法如下:

public static int occurs(String str, String subStr) 
{
int occurrences = 0;
int fromIndex = 0;

while (fromIndex > -1)
{
fromIndex = str.indexOf(subStr, occurrences == 0 ? fromIndex : fromIndex + subStr.length());
if (fromIndex > -1)
{
occurrences++;
}
}

return occurrences;
}

关于java - 如何限制 JTextArea 的最大行数和列数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/479182/

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