展开全部
不好意思,没有实现取鼠标所在行文本
但可以取到鼠标选择部分的文本
就是你用鼠标在JTextPane的文本中拖拽后选择的文本部分
请自行在JTextPane中输入一些内容测试
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextPane;
public class JTextPaneDemo extends JFrame {
private static final String LABEL_INIT="Press the GET button...";
private static final String LABEL_WARNING="Press choose the text in Pane...";
JTextPane textPane = null;
JButton button = null;
JLabel label = null;
public JTextPaneDemo(){
setDefaultCloseOperation(EXIT_ON_CLOSE);
setLayout(new BorderLayout());
initFrame();
}
private void initFrame(){
textPane = new JTextPane();
textPane.setText("Please Input...");
textPane.setBackground(Color.YELLOW);
textPane.setVisible(true);
getContentPane().add(textPane,BorderLayout.CENTER);
button = new JButton("GET");
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
String strSelected = textPane.getSelectedText();
if(strSelected != null && !strSelected.equals("")){
label.setText(strSelected);
}else{
label.setText(LABEL_WARNING);
}
}
});
button.setVisible(true);
getContentPane().add(button,BorderLayout.NORTH);
label = new JLabel(LABEL_INIT);
label.setBackground(Color.LIGHT_GRAY);
label.setVisible(true);
getContentPane().add(label,BorderLayout.SOUTH);
}
/**
* MAIN
*/
public static void main(String[] args) {
JTextPaneDemo demo = new JTextPaneDemo();
demo.setBounds(100, 100, 300, 400);
demo.setVisible(true);
}
}
抛砖引玉了
但可以取到鼠标选择部分的文本
就是你用鼠标在JTextPane的文本中拖拽后选择的文本部分
请自行在JTextPane中输入一些内容测试
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextPane;
public class JTextPaneDemo extends JFrame {
private static final String LABEL_INIT="Press the GET button...";
private static final String LABEL_WARNING="Press choose the text in Pane...";
JTextPane textPane = null;
JButton button = null;
JLabel label = null;
public JTextPaneDemo(){
setDefaultCloseOperation(EXIT_ON_CLOSE);
setLayout(new BorderLayout());
initFrame();
}
private void initFrame(){
textPane = new JTextPane();
textPane.setText("Please Input...");
textPane.setBackground(Color.YELLOW);
textPane.setVisible(true);
getContentPane().add(textPane,BorderLayout.CENTER);
button = new JButton("GET");
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
String strSelected = textPane.getSelectedText();
if(strSelected != null && !strSelected.equals("")){
label.setText(strSelected);
}else{
label.setText(LABEL_WARNING);
}
}
});
button.setVisible(true);
getContentPane().add(button,BorderLayout.NORTH);
label = new JLabel(LABEL_INIT);
label.setBackground(Color.LIGHT_GRAY);
label.setVisible(true);
getContentPane().add(label,BorderLayout.SOUTH);
}
/**
* MAIN
*/
public static void main(String[] args) {
JTextPaneDemo demo = new JTextPaneDemo();
demo.setBounds(100, 100, 300, 400);
demo.setVisible(true);
}
}
抛砖引玉了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询