我在 JFrame 中有一个 JTextField,我希望它在将文件拖入 JTextField 时找到文件的文件路径。我应该使用某种监听器吗?我该怎么做?
public class UI extends JFrame{
String s;
JTextArea textfield = new JTextArea();
public UI(){
setVisible(true);
setSize(1000,800);
setResizable(false);
setTitle("Cloavy Compiler");
textfield.setSize(1000,800);
add(textfield);
}
public void onDrag(){
s = filepath;
}
}
谢谢你的时间。