java怎么实现在GUI中文字一点一点从上到下的显示

就是有动态的效果那样子的... 就是有动态的效果那样子的 展开
 我来答
ebdhfaf
2011-05-24 · TA获得超过1288个赞
知道小有建树答主
回答量:1181
采纳率:0%
帮助的人:191万
展开全部
/**
* 这个是最简单的实现 具体如何匹配 可以在actionListener里重写
* @author Jeky
*/
public class HighlightFrame extends JFrame {

private JButton searchButton;
private JTextArea area;
private JTextField key;

public HighlightFrame() {
key = new JTextField(20);
searchButton = new JButton("search");
searchButton.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {
String text = area.getText();
String keyword = key.getText();
int index = text.indexOf(keyword);
if (index != -1) {
try {
while (index != -1) {
area.getHighlighter().addHighlight(index, index + keyword.length(), DefaultHighlighter.DefaultPainter);
index = text.indexOf(keyword, index + keyword.length());
}
} catch (BadLocationException ex) {
ex.printStackTrace();
}
} else {
JOptionPane.showMessageDialog(HighlightFrame.this, "Can't find keyword:" + keyword);
}
}
});
area = new JTextArea("This is a sample of highlighter.\n"
+ "You can enter a keyword and press search button.\n"
+ "Then the word will be highlighted in the text.\n"
+ "\n"
+ "For more information,\n"
+ "you can check javax.swing.text package.");
JPanel north = new JPanel();
north.add(key);
north.add(searchButton);

this.getContentPane().add(new JScrollPane(area));
this.getContentPane().add(north, BorderLayout.NORTH);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(350, 350);
this.setVisible(true);
}

public static void main(String[] args) {
new HighlightFrame();
}
}
十拿九稳year
2012-11-08 · TA获得超过6134个赞
知道小有建树答主
回答量:661
采纳率:80%
帮助的人:313万
展开全部
用线程来做。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
紫落星河
2011-05-26 · 超过14用户采纳过TA的回答
知道答主
回答量:32
采纳率:0%
帮助的人:32.5万
展开全部
用重绘方法可以啦。呵呵……
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式