如何将多个照片从netbeans上传到mysql

时间:2018-01-27 07:43:00

标签: mysql database

这是我的初始代码。单击按钮时,必须将照片直接上传到数据库..

private void browseActionPerformed(java.awt.event.ActionEvent evt) {                                       

JFileChooser chose=new JFileChooser();
chose.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
chose.setMultiSelectionEnabled(true);
int r=chose.showOpenDialog(new JFrame());
if(r == chose.APPROVE_OPTION){
String filepath= chose.getSelectedFile().getAbsolutePath();
fp = filepath;
path.setText(filepath);
}// TODO add your handling code here:
}

0 个答案:

没有答案