作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试确定文本区域中一行文本的边界。我知道我可以确定偏移量的界限,这意味着我需要知道行的开头和结尾的偏移量。
所以我想尝试使用 getLine*
方法,但它没有给出我预期的结果。
import java.awt.BorderLayout;
import java.awt.Color;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.text.DefaultHighlighter;
public class TextAreaLineBoundsTest
{
public static void main(String[] args) throws Exception
{
String string = "Lorem ipsum eum putant gubergren evertitur in, no assueverit vituperatoribus eum. Ea cibo offendit vim, est et vivendum qualisque prodesset. Vis doctus expetenda contentiones an, no ius mazim epicuri expetendis, saperet salutandi forensibus ne usu. Ex fugit alterum usu. His ignota cotidieque in, augue erroribus eam no.";
JTextArea textArea = new JTextArea(string);
textArea.setLineWrap(true);
textArea.setWrapStyleWord(true);
String term = "qualisque";
int termOffset = string.indexOf(term);
int termLine = textArea.getLineOfOffset(termOffset);
int termLineStartOffset = textArea.getLineStartOffset(termLine);
int termLineEndOffset = textArea.getLineEndOffset(termLine);
textArea.getHighlighter().addHighlight(termLineStartOffset, termLineEndOffset, new DefaultHighlighter.DefaultHighlightPainter(Color.YELLOW));
JScrollPane textAreaScroll = new JScrollPane(textArea);
JFrame frame = new JFrame();
frame.setLayout(new BorderLayout());
frame.add(textAreaScroll, BorderLayout.CENTER);
frame.setSize(400, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
它突出显示的是整个文本段落,但我只想要包含我正在搜索的术语的行。
最佳答案
import java.awt.*;
import javax.swing.*;
import javax.swing.text.DefaultHighlighter;
public class TextAreaLine
{
public static void main(String[] args) throws Exception
{
String string = "Lorem ipsum eum putant gubergren evertitur in, no assueverit vituperatoribus eum. Ea cibo offendit vim, est et vivendum qualisque prodesset. Vis doctus expetenda contentiones an, no ius mazim epicuri expetendis, saperet salutandi forensibus ne usu. Ex fugit alterum usu. His ignota cotidieque in, augue erroribus eam no.";
JTextArea textArea = new JTextArea(string);
textArea.setLineWrap(true);
textArea.setWrapStyleWord(true);
JScrollPane textAreaScroll = new JScrollPane(textArea);
JFrame frame = new JFrame();
frame.setLayout(new BorderLayout());
frame.add(textAreaScroll, BorderLayout.CENTER);
frame.setSize(400, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
String term = "qualisque";
int termOffset = string.indexOf(term);
Rectangle view = textArea.modelToView(termOffset);
int startOffset = textArea.viewToModel(new Point(0, view.y));
int endOffset = textArea.viewToModel(new Point(textArea.getSize().width, view.y) );
textArea.getHighlighter().addHighlight(startOffset, endOffset, new DefaultHighlighter.DefaultHighlightPainter(Color.YELLOW));
}
}
关于java - 确定换行时 JTextArea 行的文本偏移量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5162799/
在 Vaadin 7.0,显示时JavaBean Table 中的数据与 BeanContainer ,用新数据刷新表的正确方法是什么? 最佳答案 该表通过监听器监视表项的属性。如果您通过表的 Ite
首先,我使用的是带有 Axis2 1.6.2 的 eclipse,我正在 tomcat 6 上部署我创建的 Web 服务。Web 服务是在 eclipse 中通过自上而下的方法创建的。 我被要求使对我
我已将 Rails 3.1.1 应用程序升级到 Rails 3.1.3,现在,对于每个请求,它仅响应错误数量的参数(3 for 1)。不幸的是,它没有说明错误在哪里,并且应用程序跟踪为空。我认为存在一
我是一名优秀的程序员,十分优秀!