6

即使对于一个团队项目来说,这也有点挑战性,更不用说单人实现了,但我试图用JEditorPane. 我偶然发现了这个已经停产的东西,我很难理解里面的所有 lexer 文件和 .lex 的东西。我什至在一些博客中发现这个项目后来被其他团队接手,但又一次停止了。我不需要它太花哨,比如有代码折叠和东西(即使我很想知道如何做到这一点),但我至少需要一个基本的语法突出显示和几乎很多行号例如,在最左侧,就像 Notepad++ 一样。请记住,我只需要它来突出显示 Java 源代码,至少现在是这样。

我正在寻找的要么是一个教程,一个有据可查的示例和示例代码,一个预制的包,甚至是 NetBeans 的工具都可以做到这一点,我不需要从头开始编写的源代码,我只需要一个可以使用的实现。提前致谢!

PS这不会是商业的或太大的,不要问我为什么要在有这么多编程编辑器的情况下重新发明轮子,我正在学习,这对我来说是一个很好的练习!

4

2 回答 2

6

RSyntaxTextArea已获得 BSD 许可并支持您的要求,以及代码折叠等。使用非常简单。

于 2012-10-03T03:18:49.167 回答
1

好吧,我从事过一个类似的项目,这就是我想出的。就行号而言,我使用了附加到实际文本窗格的滚动窗格。然后滚动窗格使用以下代码更改数字:

public class LineNumberingTextArea extends JTextArea
{
private JTextPane textArea;


/**
 * This is the contructor that creates the LinNumbering TextArea.
 *
 * @param textArea The textArea that we will be modifying to add the 
 * line numbers to it.
 */
public LineNumberingTextArea(JTextPane textArea)
{
    this.textArea = textArea;
    setBackground(Color.BLACK);
    textArea.setFont(new Font("Consolas", Font.BOLD, 14));
    setEditable(false);
}

/**
 * This method will update the line numbers.
 */
public void updateLineNumbers()
{
    String lineNumbersText = getLineNumbersText();
    setText(lineNumbersText);
}


/**
 * This method will set the line numbers to show up on the JTextPane.
 *
 * @return This method will return a String which will be added to the 
 * the lineNumbering area in the JTextPane.
 */
private String getLineNumbersText()
{
    int counter = 0;
    int caretPosition = textArea.getDocument().getLength();
    Element root = textArea.getDocument().getDefaultRootElement();
    StringBuilder lineNumbersTextBuilder = new StringBuilder();
    lineNumbersTextBuilder.append("1").append(System.lineSeparator());

    for (int elementIndex = 2; elementIndex < root.getElementIndex(caretPosition) +2; 
        elementIndex++)
    {
        lineNumbersTextBuilder.append(elementIndex).append(System.lineSeparator());
    }
    return lineNumbersTextBuilder.toString();
}
}

语法高亮不是一件容易的事,但我开始的目的是能够根据一些包含某种语言的所有关键字的文本文件来搜索字符串。基本上基于文件的扩展名,该函数将找到正确的文件并在该文件中查找包含在文本区域中的单词。

于 2016-12-30T02:51:04.260 回答