Home Answers Viewqa Development-process Fileupload from source path to destination path

 
 


kodesudheer
Fileupload from source path to destination path
1 Answer(s)      a year and 10 months ago
Posted in : Development process

first we will create one .doc file and .rtf file in one location statically.In html we will give source path &Destination path fields and BOTH INPUT TYPES ARE "TEXT" we will give source path as statically where the .doc or .rtf files path will be their.and we have to give destination path.After submitting the files have to store in the destination path like if the source file is .doc it will create a DOC folder Dynamically in the destination path and store to that .doc file.If the source file is .rtf it will create a RTF folder dynamecally in destination path and store that .rtf file into that path . please help me...

Thanks in advance.
View Answers

August 2, 2011 at 2:38 PM


1)page.jsp:

<%@ page language="java" %>
<HTML>
<FORM ENCTYPE="multipart/form-data" ACTION="upload.jsp" METHOD=POST>
<center>
<table border="0" bgcolor=#ccFDDEE>
<tr>
<center><td colspan="2" align="center"><B>UPLOAD THE FILE</B><center></td>
</tr>
<tr><td colspan="2" align="center"> </td></tr>
<tr><td><b>Choose the file To Upload:</b></td>
<td><INPUT NAME="file" TYPE="file"></td>
</tr>
<tr><td colspan="2" align="center"> </td></tr>
<tr><td colspan="2" align="center"><input type="submit" value="Send File"> </td></tr>
<table>
</center>
</FORM>
</HTML>

2)upload.jsp:

<%@ page import="java.io.*,java.sql.*,java.util.zip.*" %>
<%
String saveFile="";
String contentType = request.getContentType();
if((contentType != null)&&(contentType.indexOf("multipart/form-data") >= 0)){
DataInputStream in = new DataInputStream(request.getInputStream());
int formDataLength = request.getContentLength();
byte dataBytes[] = new byte[formDataLength];
int byteRead = 0;
int totalBytesRead = 0;
while(totalBytesRead < formDataLength){
byteRead = in.read(dataBytes, totalBytesRead,formDataLength);
totalBytesRead += byteRead;
}
String file = new String(dataBytes);
saveFile = file.substring(file.indexOf("filename=\"") + 10);
saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
saveFile = saveFile.substring(saveFile.lastIndexOf("\\") + 1,saveFile.indexOf("\""));
int lastIndex = contentType.lastIndexOf("=");
String boundary = contentType.substring(lastIndex + 1,contentType.length());
int pos;
pos = file.indexOf("filename=\"");
pos = file.indexOf("\n", pos) + 1;
pos = file.indexOf("\n", pos) + 1;
pos = file.indexOf("\n", pos) + 1;
int boundaryLocation = file.indexOf(boundary, pos) - 4;
int startPos = ((file.substring(0, pos)).getBytes()).length;
int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
File ff = new File(saveFile);
FileOutputStream fileOut = new FileOutputStream("C:/UploadedFiles/"+ff);
fileOut.write(dataBytes, startPos, (endPos - startPos));
fileOut.flush();
fileOut.close();
%><br><table border="2"><tr><td><b>You have successfully upload the file:</b>
<%out.println(saveFile);%></td></tr></table>
<%
Connection connection = null;
String connectionURL = "jdbc:mysql://localhost:3306/test";
PreparedStatement psmnt = null;
FileInputStream fis;
InputStream sImage;
try{
Class.forName("com.mysql.jdbc.Driver").newInstance();
connection = DriverManager.getConnection(connectionURL, "root", "root");
File f = new File(saveFile);
psmnt = connection.prepareStatement("insert into file(file_data) values(?)");
fis = new FileInputStream(f);
psmnt.setBinaryStream(1, (InputStream)fis, (int)(f.length()));
int s = psmnt.executeUpdate();
if(s>0){
System.out.println("Uploaded successfully !");
}
else{
System.out.println("Error!");
}
}
catch(Exception e){
    e.printStackTrace();
}
}
%>









Related Pages:
Fileupload from source path to destination path
Fileupload from source path to destination path  first we will create... source path &Destination path fields and BOTH INPUT TYPES ARE "TEXT" we... in the destination path like if the source file is .doc it will create a DOC folder
Shortest path in JSP for a given source and destination
the shortest path from the given source to destination based on the databse values. I...Shortest path in JSP for a given source and destination  Hi. Here..., source varchar(45) NOT NULL, destination varchar(45) NOT NULL, distance int(10
Shortest path in JSP for a given source and destination
the shortest path from the given source to destination based on the databse...Shortest path in JSP for a given source and destination  Hi. Here..., source varchar(45) NOT NULL, destination varchar(45) NOT NULL, distance int(10
shortest path from the given source to dstination
to find the shortest path from the given source to destination based...shortest path from the given source to dstination  Hi. Here in my...) unsigned NOT NULL, PRIMARY KEY (id) ); INSERT INTO b (id,source,destination
Path of source code
Description:  This example demonstrate how to get the path of your java program file. The URI represents the abstract pathname and URL construct from URI. Code: import java.io.
JSP Current Path
from 'JSP Current Path'. In this section, you will learn how to get the current... JSP Current Path          JSP Current Path is used to get the current
Jsp Absolute Path
illustrate an example from 'JSP Absolute Path'. To understand JSP Absolute Path example... Jsp Absolute Path   ... the absolute path in jsp. The absolute path is the full path that contains the root
How to get full path of the uploaded file using commons fileupload jar file
How to get full path of the uploaded file using commons fileupload jar file  I want to upload file to database with its full path. Because... type.I am in need to get the full path. Can anyone help me to get the full path
Copy a file to other destination and show the modification time of destination file
will be path of the source file and second will be the path of destination file...; This is detailed java code that copies a source file to destination file, this code checks all the condition before copy to destination file, for example- source
Path Separator
path.  Download Source Code   ... Path Separator       In this example, path.separator is used to separate the path and file
File path for jar file
not found for the template file. Also I had tried to get that path from user...File path for jar file  Hi Experts, I have created one eclipse... path of the template, which is working as per expectation. But I have created
how to store image upload path to mssql database
how to store image upload path to mssql database  hi there!!, i need help in storing the image upload path into the database. basically i just use file select to upload the image from jsp to database. however when i click submit
how to store image upload path to mssql database
how to store image upload path to mssql database  hi there!!, i need help in storing the image upload path into the database. basically i just use file select to upload the image from jsp to database. however when i click submit
how to store image upload path to mssql database
how to store image upload path to mssql database  hi there!!, i need help in storing the image upload path into the database. basically i just use file select to upload the image from jsp to database. however when i click submit
how to store image upload path to mssql database
how to store image upload path to mssql database  hi there!!, i need help in storing the image upload path into the database. basically i just use file select to upload the image from jsp to database. however when i click submit
Convert the path in to properties
Convert the path in to properties       This example illustrates how to convert path... that common classpath and path can be shared among targets. Many tasks have
Error in context path
Error in context path   I Tried a Struts2 Login application having... = request.getContextPath(); System.out.println("Context Path " + contextPath... ... undeploy?path=/strutsDemo OK - Undeployed application at context path /strutsDemo
path setting - JSP-Servlet
. While setting this path i need to give the full path from drive name, instead...path setting  Hello friends, I download file uploading coding from the following url: http://www.roseindia.net/jsp/file_upload
path setting - JSP-Servlet
setting this path i need to give the full path from drive name, instead of this if i...path setting   Hello friends, I download file uploading coding from the following url: http://www.roseindia.net/jsp/file_upload/Sinle
to obtain image path
or BROWSE button . and i am expecting to obtain the complete path of the image from...to obtain image path   i have made a web application in which you can..."); // create a file object for image by specifying full path of image
Storing content from file path to an array
Storing content from file path to an array  Hi, I have a path... would like to access the "Animation.txt" file from this path and store the contents in this text file to an array. I am using jsp. I can access my path but how
What is difference between Path and Classpath?
What is difference between Path and Classpath?   hi What is difference between Path and Classpath? thanks   Hi, The Path & Classpath are used for operating system level environment variales. We mostly use Path
how to find jdk path in ubuntu?
how to find jdk path in ubuntu?  How to find out the path of installed jdk in ubuntu? Could anyone tell that command to execute from terminal.. Thanks
Java IO Path
a file uses the complete directory path from root node to file is an absolute... not contains the complete directory path from root node to the file which has...Java IO Path In this section we will discuss about the Java IO Path. Storage
Java Path Class
of Java. In Java, Path class is added from the SE 7 release. Java 7 has added... path of file system of one Operating System is different from the file system... beginIndex, int endIndex) This method is used to get the relative path from
Class path
file may start from a different directory in the class path. Folders... Class path       The Classpath is an argument that is path through the command line. Classpath can
Getting a absolute path
Getting a absolute path     ... the path of the file or directory so that you can access it. If you know the path... in front you where you don't know the path of the file, then what will you do
File Path compare in java
File Path Comparison :compareTo      File Path Comparison :compareTo... of their path.  For this purpose, we use   compareTo() method
poi & class path - Java Beginners
have downloaded poi-bin-3.5-beta6-20090622.zip from this link http... this is the correct link, so please suggest a link from where i can download those required files. Also after downloading how to set class path.  Hi Friend
Full path of image to save it in a folder
Full path of image to save it in a folder  Sir ,I am trying to upload... to find that image path &upload it as well. I am just a beginner in jsp... are a beginner, I would suggest that you create a servlet and call it from the page using
inserting an path of an image in database - JDBC
inserting an path of an image in database  hello kindly help related... time its full path should be inserted in the database(MS Sql 2000).. I m able to save it in folder..but can you plz tell me how an the full path of image can
Java Construct File Path
Java Construct File Path In this section we will discuss about how to construct file path in Java. A file path can be constructed manually or by a Java program. It is best practice to construct a file path in Java by a Java Program
Path was not found
Path was not found  The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path
path classpath
path classpath  EXPLAIN PATH AND CLASSPATH ? DIFF send me ans plz..., Path is system wide variable that tells where to find your commands. Lets... be in path. While Classpath is Enviroment Variable that tells JVM or Java Tools where
need solution to get file name from path which should give by user
need solution to get file name from path which should give by user  how do i write a program in java that i should get file path from... source = new DOMSource(doc); transformer.transform(source, result); String
Java get Absolute Path
Java get Absolute Path       In this section, you will study how to obtain the absolute path... file.getAbsolutePath() returns the absolute path of the given file.    
Java example to get the execution path
Java example to get the execution path       get execution path We can get the execution path of the system in java by using the system property. For getting execution
Request Path in JSP
Request Path in JSP       This section illustrates you how to get the request path in JSP. We are providing you an example which shows the request path. The HTTPServletRequest
Java program to get the desktop Path
Java program to get the desktop Path  ... the desktop path of the system. In the java environment we can get the desktop path also with the system's property. For getting the desktop path we have to add
Java Get Class path
Java Get Class path       In this section, you will learn how to get the class path... as: Download Source Code  
absolute path in php - PHP
absolute path in php  how to get absolute path in php
error http status-500 invalid path was requested
error http status-500 invalid path was requested  I am using...;forward name="add" path="/Add.do" /> <forward name="welcome" path...; <action path="Add" forward="add.jspx"/> <action path
error http status-500 invalid path was requested
error http status-500 invalid path was requested  I am using...;forward name="add" path="/Add.do" /> <forward name="welcome" path...; <action path="Add" forward="add.jspx"/> <action path
error http status-500 invalid path was requested
error http status-500 invalid path was requested  I am using...;forward name="add" path="/Add.do" /> <forward name="welcome" path...; <action path="Add" forward="add.jspx"/> <action path
error http status-500 invalid path was requested
error http status-500 invalid path was requested  I am using..." path="/Add.do" /> <forward name="welcome" path="/Welcome.do"/>... path="Add" forward="add.jspx"/> <action path="/Welcome" forward
how to set the class path variable in tomcat ?
how to set the class path variable in tomcat ?  description The server encountered an internal error () that prevented it from fulfilling this request. exception org.apache.jasper.JasperException: /main2.jsp(9,0) The value
path setting - JSP-Servlet
path setting  Hi, friends How to set the oracle 10g path on browser to servlet program
path - Java Beginners
meaning of path and classpath  what is the meaning of path and classpath. How it is set in environment variable.  Path and ClassPath in in JAVAJava ClassPath Resources:-http://www.roseindia.net/java/java-classpath.shtml
how to set class path
how to set class path  how to set class path in java
Java ClassPath
ways of manipulating the class path, which vary from product to product.For... to compile classes from source code, where the JVM does not.  We will use...; Question: What is the meaning of PATH and CLASSPATH ? How it is set in environment