• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Liutauras Vilda
  • Ron McLeod
  • Jeanne Boyarsky
  • Paul Clapham
Sheriffs:
  • Junilu Lacar
  • Tim Cooke
Saloon Keepers:
  • Carey Brown
  • Stephan van Hulst
  • Tim Holloway
  • Peter Rooke
  • Himai Minh
Bartenders:
  • Piet Souris
  • Mikalai Zaikin

save a xml file using java

 
Ranch Hand
Posts: 176
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am getting a steam of xml data to a java Servlet.
I need to write a code in java servlet. That
captures the content of xml file as it is
and saves the file with a unique name(using one
of the fields in the xml file). Does any body
has any code that does this., can anybody give
me some direction.
I will appreciate someone's help
 
Ranch Hand
Posts: 5040
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am moving this to the Servlets forum, since this is not in the scope of SCJP.
regds.
- satya
 
Ranch Hand
Posts: 152
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Reddy,
I generate an XML file from a String. This is slightly different from your situation but I hope it'll give you some ideas.
My code is
String xmlString = ("hope this works");
try
{
String thisFile = new String(req.getParameter("fileName") + ".xml");
OutputStreamWriter oos = new OutputStreamWriter (new FileOutputStream(thisFile));
oos.write (xmlString);
oos.close();
oos = null;
thisFile=null;
}
catch (IOException ioe)
{
System.out.println("IO error: " + ioe);
}
This should generate a file with the name of the fileName request parameter with the xml extension. The text in the file will be the contents of the String xmlString.
Frank
 
Bhasker Reddy
Ranch Hand
Posts: 176
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hOW DO I HAVE SAVE THIS FILE ON A PARTICULAR
DIRECTORY OF A SERVER.
WHAT IF MY STRING IS EXACTLY AN XML FILE LIKE
<name>bill</name>
<address>3118 richardson ave</address>
<phone_num>
<office>98723242</office>
<residence>24242324</residence>
<cell>2424234</cell>
</phone_num>
something like that is coming as a stream
i need to capture it exactly as it, write to a
file and also save the file
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There is nothing magical about servlets with respect to files, you can use any normal Java file operations. You can set a directory path with a servlet initialization parameter, use that path to create the file and then write to it.
 
Bhasker Reddy
Ranch Hand
Posts: 176
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Do you have any example of the code. I am new to
Java doesn't have much programming experience.
Can you just give some sample code, servlet initialization directory path and writing the
file to a particular file name
 
Bhasker Reddy
Ranch Hand
Posts: 176
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am using the following java file to capture
the contents of the xml file
Java Program
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
/** This servlet is a template for the CBS servlet. In the
* "doPost" method, it reads an XML file as a string from the HttpRequest's
* input stream, and writes a response to the HttpResponse's
* output stream.
*/
public class CbsTestServlet extends HttpServlet {
/*testing xml storage functionality*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws javax.servlet.ServletException, java.io.IOException {

System.out.println("Start CBSTestServlet doPost");

// Expect plain text - the XML comes across as text.
response.setContentType("text/plain");
// Open input and output streams.
ServletInputStream inputStream = request.getInputStream();
ServletOutputStream outputStream = response.getOutputStream();
BufferedReader in = new BufferedReader(new InputStreamReader(inputStream));
BufferedWriter out = new BufferedWriter(new OutputStreamWriter(outputStream));

String line = "";
String xmlString = "";
while ( (line = in.readLine()) != null ) {
System.out.println(xmlString );
xmlString += line + "\n";
}

//write to a output stream writer
try {
System.out.println("I am trying to save the file");
String thisFile = new String("xmlfile2" + ".xml");
OutputStreamWriter oos = new OutputStreamWriter(new FileOutputStream(thisFile));
oos.write(xmlString);
oos.close();
oos=null;
thisFile=null;

}
catch(IOException ioe)
{
System.out.println("i did something wrong");
System.out.println("IO error: " + ioe);
}
out.flush();
out.close();
in.close();
System.out.println("End CBSTestServlet doPost");
return;
}
}
***************************************
Input XML FILE
<Name>Bhasker</Name>
<Address>3118</address>
<phone>21332</phone>
<city>phoenix</city>
***************************************
OUTPUT THAT I GOT INSIDE THE XML2FILE.XML
xmlstring=%3CName%3EBhasker%3C%2FName%3E%0D%0A%3CAddress%3E3118%3C%2Faddress%3E%0D%0A%3Cphone%3E21332%3C%2Fphone%3E%0D%0A%3Ccity%3Ephoenix%3C%2Fcity%3E
i DON'T KNOW HOW TO GET RID OF ALL THIS JUNK
AND GET THE XML FILE AS IT IS.
i AM GETTING THIS XML FILE AS A HTTP STREAM OR
SUBMITTED BY ANOTHER WEB PAGE.
DOES ANYONE HAVE ANY BETTER IDEAS
 
Frank Daly
Ranch Hand
Posts: 152
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Bhasker,
I had the same problem with the amperstand, &, character. There are 4 characters that you must escape to ensure your file will have meaningful content. The table of characters and their escapes are below
< <
& &
" "e;
' '
You must include the semi-colon character. You must replace the characters above with their escapes.
Hope this helps
Frank
 
Bhasker Reddy
Ranch Hand
Posts: 176
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How do i replace those characters when it is part of
stream
can you advise me how to do it
[ January 15, 2002: Message edited by: Bhasker Reddy ]
 
William Brogden
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This really seems pretty odd to me - the Java output routine to write a String to the OutputStreamWriter surely can't be doing the substitution of the escaped forms for < etc.
They must be getting converted somewhere else.
What is that System.out.println( xmlString ) line showing?
Bill
 
Bhasker Reddy
Ranch Hand
Posts: 176
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
system.out.println(xmlString)
is printing the same thing
xmlstring=%3CName%3EBhasker%3C%2FName%3E%0D%0A%3CAddress%3E3118%3C%2Faddress%3E%0D%0A%3Cphone%3E21332%3C%2Fphone%3E%0D%0A%3Ccity%3Ephoenix%3C%2Fcity%3E
I am submiting the following xml file through a web page.
<Name>Bhasker</Name>
<Address>3118</address>
<phone>21332</phone>
<city>phoenix</city>
Is there any function in JAva that i can use
to replace
%3C with <
%/*%3C with <
%3E with >
%2F with /
%0D%0A with \n
 
Bhasker Reddy
Ranch Hand
Posts: 176
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I AM USING THIS CODE AND GETTING THIS MESSAGE
***************
INPUT
**************
<Name>Bhasker</Name>
<Address>fernhurst</Address>
<city>Richardson</city>
**********************
PROGRAM I AM USING
**********************-
/*testing xml storage functionality*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws javax.servlet.ServletException, java.io.IOException {

System.out.println("Start CBSTestServlet doPost");

// Expect plain text - the XML comes across as text.
response.setContentType("text/plain");
ServletInputStream inputStream = request.getInputStream();
ServletOutputStream outputStream = response.getOutputStream();
BufferedReader in = new BufferedReader(new InputStreamReader(inputStream));
//BufferedWriter out = new BufferedWriter(new OutputStreamWriter(outputStream));
String thisFile = new String("xmlfile6" + ".xml");
OutputStreamWriter oos = new OutputStreamWriter(new FileOutputStream(thisFile));

String line = "";
while ( (line = in.readLine()) != null ) {
System.out.println("line" + line);
line = line.substring(13);
//line = line.replace('%', ' ');
line = line.trim();
line = line.replace('+', '\n');


oos.write(line);
}
thisFile = null;
oos.flush();
oos.close();
//out.flush();
//out.close();
System.out.println("End CBSTestServlet doPost");
return;
}
********************************
OUTPUT
**********
Name%3EBhasker%3C%2FName%3E
%0D%0A%3CAddress%3Efernhurst%3C%2FAddress%3E
%0D%0A%3Ccity%3ERichardson%3C%2Fcity%3E
DO YOU GUYS KNOW HOW CAN I GET RID OF THIS JUNK
I APPRECIATE IF ANY BODY CAN HELP ME
 
William Brogden
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
OK - the browser is doing a urlencode operation on the text before sending it.
You need to use this class in the java.net package
public class URLDecoder
extends Object
The class contains a utility method for converting from a MIME format called "x-www-form-urlencoded" to a String
To convert to a String, each character is examined in turn:
The ASCII characters 'a' through 'z', 'A' through 'Z', and '0' through '9' remain the same.
The plus sign '+'is converted into a space character ' '.
The remaining characters are represented by 3-character strings which begin with the percent sign, "%xy", where xy is the two-digit hexadecimal representation of the lower 8-bits of the character.
-- so for each line that is read, do the following before saving it.
line = URLDecoder.decode( line );
 
Bhasker Reddy
Ranch Hand
Posts: 176
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Unfortunately our team uses visual age 3.0. It
contains Java 1.1.7.
URLDecoder class is not present in it's java class
libraries.
It has URLEncoder,URLStreamHandler, URLStreamHandlerFactory classes in it but not
URLDecoder.
I am not sure if i can download a specific package from java.sun.com like java.net.* and incorporate it in my Visual age.
Again guys thanks for all your help
 
Ranch Hand
Posts: 115
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
May I ask whether your file upload is done using a POST request which has a content type of "application/x-www-form-urlencoded".
Is the XML file content a parameter value in the POST request?
Thanks.
 
reply
    Bookmark Topic Watch Topic
  • New Topic