![]() |
|
|
|
#1 |
|
Hi,
I'm facing a problem while trying to upload an image from local machine hard drive to the database in web server using servlet. I'm able to upload an image to the database in the local machine !!!!!! But the image is not being uploaded to the remote database !! The String CouponImage is a local machine path of the image like E:\Coupons\Coupon1.jpg . It's not being accepted. Please help me. I'm new to servlet programming. I'm using the following code public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { res.setContentType("text/html"); try{ Connection connection = null; FileInputStream fis = null; PreparedStatement preparedStatement =null; Class.forName("com.mysql.jdbc.Driver").newInstance (); connection = DriverManager.getConnection ("jdbc:mysql://localhost/MobileCoupons",username,password); String CouponImage = req.getParameter("upload"); String query = "INSERT INTO Coupondata(CouponImage) VALUES (?)"; preparedStatement = connection.prepareStatement(query); File file = new File(CouponImage); fis = new FileInputStream(file); preparedStatement.setBinaryStream(3, fis, (int) file.length()); preparedStatement.execute(); connection.commit(); connection.close(); fis.close(); } } apjustin |
|
|
|
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| File transfer program for local machine to application server. | Jagadeeshg | Software | 0 | 03-02-2009 09:51 AM |
| Upload image thumbnail to Web Server ? Problem... | tapasmahata | Software | 0 | 02-07-2008 10:03 AM |
| pcAnywhere and Brother fax machine on same phoen line | bem522 | Software | 0 | 07-20-2007 04:20 PM |
| Re: Can't login to XP Pro machine | jjw | A+ Certification | 2 | 10-19-2004 12:36 AM |
| Re: Can't login to XP Pro machine | Gary | A+ Certification | 3 | 09-22-2004 10:17 PM |