Java – 滚动到JTextArea内的特定文本

前端之家收集整理的这篇文章主要介绍了Java – 滚动到JTextArea内的特定文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在我正在写的当前程序中实现一个功能,我想学习如何向下滚动到JTextArea中的特定文本.例如,让我说我有以下:
  1. JTextArea area = new JTextArea(someReallyLongString);

someReallyLongString将表示一段或一段非常大的文本(垂直滚动条可以在其中显示).所以我想要做的是向下滚动到该文本区域内的特定文本.例如,让someReallyLongString在滚动条的中间附近包含单词“the”(意思是这个词不可见),我将如何向下滚动到那个特定的文本?

谢谢,任何帮助将会非常感激.

解决方法

这是一个非常基本的例子.这样就基本上走过文档来查找单词在文档中的位置,并确保文本被移动到可视区域.

它也突出了比赛

  1. public class MoveToText {
  2.  
  3. public static void main(String[] args) {
  4. new MoveToText();
  5. }
  6.  
  7. public MoveToText() {
  8. EventQueue.invokeLater(new Runnable() {
  9. @Override
  10. public void run() {
  11. try {
  12. UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
  13. } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
  14. }
  15.  
  16. JFrame frame = new JFrame("Testing");
  17. frame.setDefaultCloSEOperation(JFrame.EXIT_ON_CLOSE);
  18. frame.setLayout(new BorderLayout());
  19. frame.add(new FindTextPane());
  20. frame.setSize(400,400);
  21. frame.setLocationRelativeTo(null);
  22. frame.setVisible(true);
  23. }
  24. });
  25. }
  26.  
  27. public class FindTextPane extends JPanel {
  28.  
  29. private JTextField findField;
  30. private JButton findButton;
  31. private JTextArea textArea;
  32. private int pos = 0;
  33.  
  34. public FindTextPane() {
  35. setLayout(new BorderLayout());
  36. findButton = new JButton("Next");
  37. findField = new JTextField("Java",10);
  38. textArea = new JTextArea();
  39. textArea.setWrapStyleWord(true);
  40. textArea.setLineWrap(true);
  41.  
  42. Reader reader = null;
  43. try {
  44. reader = new FileReader(new File("Java.txt"));
  45. textArea.read(reader,null);
  46. } catch (Exception e) {
  47. e.printStackTrace();
  48. } finally {
  49. try {
  50. reader.close();
  51. } catch (Exception e) {
  52. }
  53. }
  54.  
  55. JPanel header = new JPanel(new GridBagLayout());
  56.  
  57. GridBagConstraints gbc = new GridBagConstraints();
  58. gbc.gridx = 0;
  59. gbc.gridy = 0;
  60. gbc.anchor = GridBagConstraints.WEST;
  61. header.add(findField,gbc);
  62. gbc.gridx++;
  63. header.add(findButton,gbc);
  64.  
  65. add(header,BorderLayout.NORTH);
  66. add(new JScrollPane(textArea));
  67.  
  68. findButton.addActionListener(new ActionListener() {
  69. @Override
  70. public void actionPerformed(ActionEvent e) {
  71. // Get the text to find...convert it to lower case for eaiser comparision
  72. String find = findField.getText().toLowerCase();
  73. // Focus the text area,otherwise the highlighting won't show up
  74. textArea.requestFocusInWindow();
  75. // Make sure we have a valid search term
  76. if (find != null && find.length() > 0) {
  77. Document document = textArea.getDocument();
  78. int findLength = find.length();
  79. try {
  80. boolean found = false;
  81. // Rest the search position if we're at the end of the document
  82. if (pos + findLength > document.getLength()) {
  83. pos = 0;
  84. }
  85. // While we haven't reached the end...
  86. // "<=" Correction
  87. while (pos + findLength <= document.getLength()) {
  88. // Extract the text from teh docuemnt
  89. String match = document.getText(pos,findLength).toLowerCase();
  90. // Check to see if it matches or request
  91. if (match.equals(find)) {
  92. found = true;
  93. break;
  94. }
  95. pos++;
  96. }
  97.  
  98. // Did we find something...
  99. if (found) {
  100. // Get the rectangle of the where the text would be visible...
  101. Rectangle viewRect = textArea.modelToView(pos);
  102. // Scroll to make the rectangle visible
  103. textArea.scrollRectToVisible(viewRect);
  104. // Highlight the text
  105. textArea.setCaretPosition(pos + findLength);
  106. textArea.moveCaretPosition(pos);
  107. // Move the search position beyond the current match
  108. pos += findLength;
  109. }
  110.  
  111. } catch (Exception exp) {
  112. exp.printStackTrace();
  113. }
  114.  
  115. }
  116. }
  117. });
  118.  
  119. }
  120. }
  121. }

猜你在找的Java相关文章