我想告訴我如何在用戶上傳後將圖像保存到mySQL。
提示:使用NetBeans GUI Builder中
這是我的代碼選擇圖像:
如何將圖像保存到用戶上傳的mySQL
private void btnJFileChooserActionPerformed(java.awt.event.ActionEvent evt) {
JFileChooser fc = new JFileChooser();
int result = fc.showOpenDialog(null);
if (result == JFileChooser.APPROVE_OPTION) {
File file = fc.getSelectedFile();
try {
image2.setIcon(new ImageIcon(ImageIO.read(file)));
} catch (IOException e) {
e.printStackTrace();
}
}
這捕獲了setter和getter:
http://up07.s-oman.net/DVMGa.png
這捕獲的保存按鈕:
http://up07.s-oman.net/P2slSGkcj.png
請在繼續之前查看[對此](http://stackoverflow.com/questions/6472233/can-i-store-images-in-mysql)。 –