标签:sse 今天 技术 系统 wing return ESS exist ack
Java小项目之:文件的加密与解密!再也不怕存的小电影被别人发现了!部分代码展示:
package wt.diy.encryption.gui;
import java.io.File;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import wt.diy.encryption.service.ServiceContext;
public class Context {
ServiceContext service;
EncryptionFrame frame;
public Context(ServiceContext service) {
this.service = service;
}
public void setFrame(EncryptionFrame frame) {
this.frame = frame;
}
public void excute(String source,String destiny, String key,JFrame frame) {
File file = new File(destiny);
if(!this.frame.getRadio().isSelected()&&file.exists()){
JOptionPane.showMessageDialog(frame, “文件已经存在”);
return ;
}
service.excute(source, destiny, key);
}
public void showMe(){
frame.setVisible(true);
}
public String open(JFrame frame) {
JFileChooser jfc = new JFileChooser();
jfc.showOpenDialog(frame);
File f = jfc.getSelectedFile();
return f.getAbsolutePath();
}
}
喜欢这样文章的可以关注我,我会持续更新,你们的关注是我更新的动力!需要更多java学习资料的也可以私信我!
祝关注我的人都:身体健康,财源广进,福如东海,寿比南山,早生贵子,从不掉发!
Java小项目之:文件的加密与解密!再也不怕存的小电影被别人发现了!
标签:sse 今天 技术 系统 wing return ESS exist ack
原文地址:https://blog.51cto.com/14623707/2469654