本文介绍了如何删除JLabel中的文件以复制到目录中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
//---- label5 ----
label5.setText("Drag and drop your texture\npack in the box *.zip files");
label5.setIcon(new ImageIcon(
"E:\\Chituri\\MBMLauncherJava\\src\\resursele\\dasdasdasd.png"));
但我想做这样的事情:
But I want to make something like this:
//---- label5 ----
label5.setText("Drag and drop your texture\npack in the box *.zip files");
label5.setIcon(new ImageIcon(
"E:\\Chituri\\MBMLauncherJava\\src\\resursele\\dasdasdasd.png"));
drag files in the label > automatically move files in particular folder (E:\\Chituri)
我该怎么做?
How I can do this?
推荐答案
这篇关于如何删除JLabel中的文件以复制到目录中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!