January 7, 2009 at 5:28 AM
Hi Jagadeesh,
Please implement following code:
<%@ page import="java.io.*,java.sql.*,java.util.*,java.text.*,java.text.SimpleDateFormat" %>
<html>
<%
int val =0;
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);
String saveFile = file.substring(file.indexOf("filename=\"") + 10);
System.out.println("saveFile=" + saveFile);
saveFile = saveFile.substring(saveFile.lastIndexOf("\\")+ 1,saveFile.indexOf("\""));
System.out.println("saveFile" + saveFile);
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;
FileOutputStream fileOut = new FileOutputStream(saveFile);
fileOut.write(dataBytes, startPos, (endPos - startPos));
%>
<%
Connection con=null;
PreparedStatement pstatement = null;
String line = null;
String value=null;
String url = "jdbc:
mysql://192.168.10.211:3306/";;
String dbName = "amar";
String driver = "com.mysql.jdbc.Driver";
String userName = "amar";
String password = "amar123";
try{
StringBuilder contents = new StringBuilder();
BufferedReader input = new BufferedReader(new FileReader(saveFile));
while (( line = input.readLine()) != null){
contents.append(line);
}
value = contents.toString();
Class.forName(driver);
con = DriverManager.getConnection(url+dbName,userName,password);
java.util.Date now = new java.util.Date();
String DATE_FORMAT = "yyyy-MM-dd hh:mm:ss";
SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT);
String strDateNew = sdf.format(now) ;
String queryString = "INSERT INTO FileUpload set filename='"+value+"',filedate='"+strDateNew+"'";
pstatement=con.prepareStatement(queryString);
val = pstatement.executeUpdate();
if(val>0){
%>
<br><br>
<b>File <% out.println(saveFile); %> has been uploaded and inserted into Database at <%=strDateNew%>.</b>
<%
}
}
catch(Exception e){
System.out.println("Error :" + e);
}
}
%>
</html>
------------------------------------
Thanks.
Related Tutorials/Questions & Answers:
creating new file with File class - JSP-Interview Questionscreating new file with
File class I have a
file uploading concept in my project. For that, while
creating a
new file is it necessary to give... of FileOutputStream
class. If we give the path as from the
file uploading location will it work
Create a new zip file in ZipArchive.Creating a
new Zip
file in ZipArchive
For
creating zip
file, use zipArchive ()
class. Create a
new zip
file in ZipArchive. Use the conditional statement... will generate a
new zip
file, in case of failure, it will print failed in
creating Advertisements
class fileclass file How to create
class file in jsf easily
file classfile class Hi Friend, I have a
file class it lets me extract all... void ReadCSV(){
File csvFile =
new File("Hotels.csv...
File");
}
Scanner in =
new Scanner(System.in);
try
Creating an executable jar fileCreating an executable jar file When I try to create jar.exe through CMD, the manifest
file created doesn't contain Main-
Class attribute, even though it is included in text
file used during creation of jar
file class fileclass file how to convert java classfile into java sourcefile
Creating a setup fileCreating a setup file How to create a setup
file in tomcat as done in visual studio... could plz tell me as early as possible
creating a file in a directorycreating a
file in a directory hi i have tried all the
file methods... are
new File ( ".", "C:/fileInRoot.txt" )
new File ( "myDir", "/otherDir" )
File( "myDir/OtherDir" )
File( "/OtherDir" );
new File ( "species/clan/individual.txt
Creating XMl file - XMLCreating XMl file I went on this page: http://www.roseindia.net/xml/dom/createblankdomdocument.shtml and it shows me how to create an XML
file, however there is something I don't understand. I have to create an XML
file Creating an exe fileCreating an exe file Hi All,
I have developed java application using swing by Net Beans IDE. Now I need to convert my application into exe
file... as an exe
file. Please anyone suggest me.Thanks in Advance.
Thanks,
T.Thanga meena
Creating JAR File - Java Beginners a line to my manifest
file (i.e. Main-
Class: mypackage.MyClass...
Creating JAR File Respected Sir,
Thankyou very much for your..., which says, Failed to load Main-
Class manifest attribute from H:\Stuff\NIIT\Java
a jsp code for creating a text file for
creating a
new text
file for each user, when they login in to the website for
creating a
new data
file.
So i need a jsp code for following options.
when user login then the following has to be displayed for user
1.Creating the
new file
2.delete
Creating JAR File - Java Beginners or
class files. And what is this manifest
file, and what changes needs to be done... main(String[]args){
CreateJar jar=
new CreateJar();
File folder =
new File...
file=
new File("C://Answers//DataBase//DataBaseExamples.jar
Creating a log in a text file - Applet");
Label label1 =
new Label("Enter the
file name:");
TextField text =
new...();
}
else{
File f =
new File(str);
if(f.exists...
Creating a log in a text file Hey there,
I have created an applet
Java class fileJava
class file How do i open a java
class file using eclipse
Creating a File in the directory.Creating a
file using HTML form action
In this example, you will learn to make a query form asking to to create a
file in PHP. You will have to write... of PHP code in the form.ADS_TO_REPLACE_1
for
creating a
file in PHP, first
creating a jar file - JSP-Servletcreating a jar file Can you give me detail answer
1. i am having a servlet.class
file in classes folder
2. web.xml
file
my questions are
1. where to place the html or jsp files
2. how to create a jar
file and how can
Random Access File classRandom Access
File class Write a short note on Random Access
File class.
Please visit the following link:
Java Random Access
File Java file create new fileJava
file create
new file
This section demonstrates you how to create a
new... of these tools, you can can easily
create a
new empty
file. Now for this task, we have used the method
createNewFile() of boolean type which creates a
new empty
file Create new file in javaCreate
new file in java
We are going to discuss how to create
new file in java... in java
File class representing
the files and folder pathnames by location. With
File class we create
files and directories. Java
File represents actual
Convert Class File to .java File - Java BeginnersConvert
Class File to .java File Sir, How To Convert .
class file to .java
File.
Please Help me Use cavaj software ,which is freeware, to convert .
class to .java Use jd-gui to convert ur .
class to .java
NOT ABLE TO MAKE A NEW FILE IN SERVLETNOT ABLE TO MAKE A
NEW FILE IN SERVLET What is the error in my code? It is not making a
new file which contains the string values coming from a HTML...{
File file=
new File("C://abc.xml");
FileWriter fr=
new FileWriter
bad class file - JSP-Servlet) and got a "bad
class file...): myservlet.java:9: cannot access HttpServlet bad
class file: \HttpServlet.class...bad
class file. I'm (desperately) trying to get... api.jar
file that you have downloaded from
class path.Find servlet-api.jar from
How To Create a New FileHow To Create a
New File
In this section we will discuss about how to create a
new file in Java.
A Computer
File is a storage of data. In this
file we can.... Such as, File.createNewFile() method creates the
new file. java.io.File creates the
new Java file new lineJava
file new line
In this section, you will learn how to write the text in
new line of text
file.
Description of code:
The package java.io.* has provide... of BufferedWriter
class that uses the FileWriter
class to parse the
file and create
Creating a JAR file in Java Creating a JAR
file in Java
This section provides you to the
creating a jar
file.... This program has been used the jar command "jar cf jar-
file-name
directory
How to write file text In New LineHow to write
file text In
New Line Hi friends,
How to write
file... you went
new text in
new line. For this we created a
new text
file named "newLineFileWriter.txt" using the
File class. This
file name we created that we use
Write Text To File In New Line.Write Text To
File In
New Line.
In this tutorial you will learn how to write text into
file in a
new line.
When you are writing in a
file you may be required... text
file named "newLineFileWriter.txt" using the
File class. This (
File FILE args[])
{
try
{
File file=
new File("Name.txt");
FileReader f=
new FileReader(
file... the content of the
file.
import java.io.*;
public
class Appliance {
public static void main(String args[]) {
try {
File file=
new File FileFile How to create .Exe
file in jana
filefile how can copy the information in the
file to the string?
Store
file data into String
filefile Could anyone please help me to write a code that does the following: Opens a
file named MyName.txt, reads the first line from the
file and displays it, and then closes the
file.
Thank you so much
filefile how can add the information to the graphic
file filefile Hi,what can delet some of the information of the
file filefile Hi,how can delet some of the information of the
file filefile hi i want read special line of
file. what am i doing ?
I write... read data from
file. please help me!
void maketree(BtNode root,int i) throws FileNotFoundException, IOException{
FileInputStream fis=
new File File How to find all files in our local computer using java
xcode unknown class in interface builder filexcode unknown
class in interface builder file What is the unknown
file in xib or how can i find and remove such kind of exception from my
file..
"xcode unknown
class in interface builder
file Java class name and file name are differentJava
class name and
file name are different Can we run a Java program having
class name and
file name different?
Hi Friend,
No, you can't.
It is necessary to save the java
file with its
class name otherwise
Decompress file using Inflater class.Decompress
file using Inflater
class.
In this tutorial, we will define the use... Example, we
will explain how to decompress
file using Inflater
class. The Inflater... and read bytes from
file. The
InflaterInputStream
class creates a input
problem in creating create .ipa file in my iPhone appproblem in
creating create .ipa
file in my iPhone app Hi, does anyone have idea on how to create a .create .ipa
file for my iPhone / iPad application?
Also do i need to delete the previous build to create .ipa
file?
Thanks