DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone >

How to save/load java classes in XML format with two code rows

Luciano Zu user avatar by
Luciano Zu
·
May. 17, 14 · · Code Snippet
Like (0)
Save
Tweet
394 Views

Join the DZone community and get the full member experience.

Join For Free
JAXBReaderWriter is into ardulink.jar from www.ardulink.org 

JAXBReaderWriter manages correctly the character set. It uses explicity UTF-8 and not the platform default. So you can use file created to and from several systems and if you use non ASCII characters you can manage strings correctly.

// if your JAXB annotated class is named Configuration you have just to write
JAXBReaderWriter readerWriter = new JAXBReaderWriter(Configuration.class);

// Now you can read it from a file
Configuration configuration = readerWriter.read(file);

// or save it to a stream
readerWriter.write(configuration, outputstream);
XML Java (programming language)

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Top Six Kubernetes Best Practices for Fleet Management
  • How to Determine if Microservices Architecture Is Right for Your Business?
  • What Is ERP Testing? - A Brief Guide
  • JUnit 5 Tutorial: Nice and Easy [Video]

Comments

Partner Resources

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo