Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8730071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:56:50+00:00 2026-06-13T08:56:50+00:00

I use XStream to write an object in a xml file . Then I

  • 0

I use XStream to write an object in a xml file.
Then I deserializing the file again to use the objects.
My Problem is, that after I close my program, the xml “file” is gone. So how can I save this xml file to a specific directory? I already tried FileOutputStream but it doesn’t work… I also google it, but found not the right solution for me…

Method savePerson

public void savePerson(String uNummer, Person person) {
    System.out.println("save person");
    try{            
        xml = xstream.toXML(person);

    }catch (Exception e){
        System.err.println("Error in XML Write: " + e.getMessage());
    }
}

And the Method readPerson

public Person readPerson(String uNummer) {
    System.out.println("read person");
     Person person = new Person();
    try{
        person = (Person) xstream.fromXML(file_path + uNummer + ".xml");       
    }catch(Exception e){
        System.err.println("Error in XML Read: " + e.getMessage());
    }
    return person;
}

Directory: \\releasearea\ToolReleaseArea\PersistenceSave

EDIT
Correct Code: (by ppeterka)

public void savePerson(String uNummer, Person person) {
    System.out.println("save person XML");
    FileOutputStream fos = null;
    try{            
        xml = xstream.toXML(person);
        fos = new FileOutputStream(file_path + uNummer + ".xml");
        fos.write("<?xml version=\"1.0\"?>".getBytes("UTF-8"));
        byte[] bytes = xml.getBytes("UTF-8");
        fos.write(bytes);

    }catch (Exception e){
        System.err.println("Error in XML Write: " + e.getMessage());
    }
    finally{
        if(fos != null){
            try{
                fos.close();
            }catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T08:56:50+00:00Added an answer on June 13, 2026 at 8:56 am

    You didn’t write the file, just obtained the serialized content…

    FileOutputStream fos = null;
    try {
        fos = new FileOutputStream("myfilename");
        fos.write("<?xml version=\"1.0\"?>".getBytes("UTF-8")); //write XML header, as XStream doesn't do that for us
        byte[] bytes = xml.getBytes("UTF-8");
        fos.write(bytes);
    
    } catch(Exception e) {
        e.printStackTrace(); // this obviously needs to be refined.
    } finally {
        if(fos!=null) {
            try{ 
                fos.close();
            } catch (IOException e) {
                e.printStackTrace(); // this obviously needs to be refined.
            }
        }
    }
    

    Also, your reading function has an error too: the xstream.fromXML(String) accepts a String, but it does not interpret it as a file name, but as the XML content itself… You have to use the fromXML(File) function:

    public Person readPerson(String uNummer) {
        System.out.println("read person");
        Person person = new Person(); //if there is an error during deserialization, this is going to be returned, is this what you want?
        try{
            File xmlFile = new File(file_path + uNummer + ".xml");
            person = (Person) xstream.fromXML(xmlFile);       
        }catch(Exception e){
            System.err.println("Error in XML Read: " + e.getMessage());
        }
        return person;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I use XStream with DomDriver to serialize and deserialize a DefaultStyledDocument object, so I
Can I safely use XStream to process XML coming from outside of my system
I am planning on using XStream with Java to convert between objects and XML
I'm looking for a way to serialize Java objects into XML for use by
I'm trying to use XStream to import large XML files (~ 1 GB). I
I would like to switch from Xstream to Jackson for serializing/deserializing objects in a
I have a xml file, which is not serialized using XStream. It may be
I use XStream to serialize an object A implementing an interface : interface MyInterface
I have many xml files and I would like to use XStream to manage
I have some Java objects that I want to transform to XML. Some of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.