public class InsertImage { static JTextField text=new JTextField(20); static JButton button=new JButton("Save"); static JPanel panel=new JPanel();
public static void main(String[] args) { JFileChooser chooser = new JFileChooser(); int returnVal = chooser.showOpenDialog(null); final File file ; if(returnVal == JFileChooser.APPROVE_OPTION) { file = chooser.getSelectedFile(); final String name=file.getName(); System.out.println(name); text.setText(name); panel.add(text); panel.add(button); button.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ try{ Connection con = null; String url = "jdbc:mysql://localhost:3306/"; String db = "test"; String driver = "com.mysql.jdbc.Driver"; String user = "root"; String pass = "root"; FileInputStream fis; Class.forName(driver); con = DriverManager.getConnection(url+db, user, pass); PreparedStatement st = con.prepareStatement("insert into file(file_name,file_data) values(?,?)"); fis = new FileInputStream(file); st.setString(1,name); st.setBinaryStream(2, (InputStream)fis, (int)(file.length())); int s = st.executeUpdate(); JOptionPane.showMessageDialog(null,"image is successfully inserted."); } catch(Exception ex){} } }); JFrame f=new JFrame("Insert Image"); f.add(panel); f.setVisible(true); f.setSize(300,100); } } }
Thanks
August 28, 2009 at 12:46 PM
Thank you Sir / Ma'am for your valuble tutorial.
Thanks in a million.
Related Pages:
Using a JFileChooser - Java Beginners Using a JFileChooser Dear Editor,
How to select an image from JFileChooser & add the image in mySQL5 database?
Thanks in advanced.
Regards... void main(String[] args) {
JFileChooser chooser = new JFileChooser();
int
JFileChooser - Java Beginners
JFileChooser How to create a GUI application that allows a user to select a text file (using the JFileChooser). The program will then count...(ActionEvent e){
JFileChooser chooser = new JFileChooser
wait until a file is opened using JFileChooser
wait until a file is opened using JFileChooser
I created a java... JFileChooser to open a file.
b. call a funtion that takes in the filename as argument...){
JFileChooser chooser=new JFileChooser();
int ret = chooser.showDialog
JFileChooser
Java: JFileChooser
The javax.swing.JFileChooser class
is used to create... an Open File Chooser
The sample code below uses JFileChooser in the Open button....
// Illustrates menus, JFileChooser, Scanner..
// Author : Fred Swartz
// Date : 2005-02-23
How to select default FileFilter when creating a JFileChooser dialog?
How to select default FileFilter when creating a JFileChooser dialog? ... default FileFilter when creating a JFileChooser dialog?
Thanks
Hi,
Following code can be used:
JFileChooser c = new JFileChooser
java in using brausing
java in using brausing sir, i am beginner java developer ,sir i am creat's the image viewer Jframe but not a created frame plz. halpe me give...) {
JFileChooser chooser = new JFileChooser();
chooser.setCurrentDirectory(new File
java chat using java media
java chat using java media Remove the error of this code plz reply... ActionListener, ControllerListener {
JButton fileButton;
JFileChooser file = new JFileChooser();
JLabel urlLabel;
JTextField urlField;
String mediaFile
generate columns in file using tab delimeter - Swing AWT
generate columns in file using tab delimeter Hi,
I have problem ........i have imported all the files in a directory usingJFIleChooser... one please help me how to generate the columns and rows using tab delimiter.(I
using array using array column wise total of a matrix
using function using function using a function to find the value of v from the foiiowing expression
1v=1u+1*f
using array using array Circular left shift array element by one position
using array using array Circular left shift array element by one position
using array using array read 10 digit number and display (star
using array using array display 10 digit number using array and print pyramid.
1
1
1 1
1 1 1 1
1 1 1 1
Using Ajax Using Ajax Hi,
How I can use Ajax in web programming? Tell me any example which using Ajax to call server side script?
Thanks
Hi,
Here are examples:
PHP Ajax and Database
First Ajax Example
Getting Started
using for loop using for loop what will be the source code of the program that the output will be printing all numbers that is divisible by 3 and 5
sample output:
3 is divisible by 3
5 is divisible by 5
6 is divisible by 3
9 is divisible by 3
using function using function write a program using function overloading to accept any sentence and print vowels and consonants sepratly
Here is an example that accepts a sentence from the user and display the vowels and consonants
using iReport using iReport Hello sir ,
I am using iReport3.0 and then i am calling the .jrxml file in jsp but i got the
error.My JSP code is as below and after the jsp code i have placed the error code
Thanks in advance:
<
using constructor using constructor all constructor for matrix class?
The given code implements the Matrix class and show the addition of two matrices.
public class Matrix{
int M;
int N
A Java Program by using JSP
A Java Program by using JSP how to draw lines by using JSP plz show me the solution by using program
survey poll using java
survey poll using java how to make a survey poll using java? i am using netbeans and glassfish
java code using swings
java code using swings code that should be able to enter data of student details using all swings into the access database using jdbc connectivity