There's no such thing as a stupid question, but they're the easiest to answer.
JoinTour
Login
 
Tag Cloud
access audio avg avg 8 bios blue screen boot browser bsod computer cpu crash css dell desktop driver drivers dvd email error excel explorer firefox firefox 3 freeze gimp graphics hard drive hardware hijackthis hjt install internet internet explorer itunes keyboard laptop macro malware missing monitor network networking outlook outlook 2003 outlook 2007 outlook express password popups problem problems router seo server slow sound sp3 spyware trojan usb video virtumonde virus vista vundo windows windows vista windows xp winxp wireless
Software Development
Search
Search in:
 
Advanced Search
Tech Support Guy Forums > Software & Hardware > Software Development >
code to upload a file in java


HELLO AND WELCOME! Before you can post your question, you'll have to register -- it's completely free! Click here to join today! We highly recommend that you print a copy of our Guide for New Members. Enjoy!

 
Thread Tools
radhika123's Avatar
Junior Member with 5 posts.
 
Join Date: Apr 2008
08-Jul-2008, 11:51 PM #1
code to upload a file in java
HI friends
I want to know how to upload a file in java.
After submitting the selected file should be copied in a folder created by us only.
I mean first we need to select a file using browse,then after submitting the selected file should be placed in a folder ,this folder should be created by us only using mkdir();
Can any one send me the code to upload a file.
Thanks in advance
Chicon's Avatar
Computer Specs
Distinguished Member with 6,512 posts.
 
Join Date: Jul 2004
Location: 50° 34' 07.13" N - 04° 10' 23.
Experience: Second socks retriever
09-Jul-2008, 02:22 AM #2
Hi radhika123,

Welcome to Tsg !

The following examples work even if the destination folder is a shared folder of a remote system.

To move the file to another directory
Code:

String srcDir = "C:\\source";
String dstDir = "Z:\\destination";
String filNam = "file.ext";

File f = new File(srcDir + File.separator + filNam);
f.renameTo(new File(dstDir + File.separator + filNam));
To copy the file to another directory
Code:

String srcDir = "C:\\source";
String dstDir = "Z:\\destination";
String filNam = "file.ext";

try {
   BufferedInputStream bis = new BufferedInputStream(new FileInputStream(srcDir + File.separator + filNam));
   BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(dstDir + File.separator + filNam));
   byte[] buf = new byte[1024];
   int len;
   while ((len = bis.read(buf)) > 0) {
      bos.write(buf, 0, len);
   }
   bos.close();
   bis.close();
} catch(IOException ioe) {
      System.out.println(ioe.getMessage());
}
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are Off
Refbacks are Off

You Are Using:
Server ID
Advertisements do not imply our endorsement of that product or service.
All times are GMT -4. The time now is 11:10 PM.
Copyright © 1996 - 2008 TechGuy, Inc. All rights reserved.
Powered by vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Powered by Cermak Technologies, Inc.