Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
53 lines (37 loc) · 1.32 KB

File metadata and controls

53 lines (37 loc) · 1.32 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.hmkcode;
import com.hmkcode.vo.Article;
import com.thoughtworks.xstream.XStream;
public class App
{
public static void main( String[] args )
{
XStream xs = new XStream();
xs.autodetectAnnotations(true);
// <com.hmkcode.vo.Article> --> <article>
//xs.alias("article", Article.class);
// <url> --> <address>
// xs.aliasField("address", Article.class, "url");
// OBJECT --> XML
String xml = xs.toXML(createArticle());
System.out.println("OBJECT --> XML");
System.out.println(xml);
System.out.println("\n--------------------------------\n");
// XML --> OBJECT
Article article = (Article) xs.fromXML(xml);
System.out.println("XML --> OBJECT");
System.out.println(article);
}
private static Article createArticle(){
Article article = new Article();
article.setTitle("XStream - Java Object to XML & XML to Object Mapping");
article.setUrl("http://hmkcode.com/xstream-java-object-xml");
article.setPublished(true);
article.addCategory("Java");
article.addTag("Java");
article.addTag("Xstream");
article.addTag("XML");
article.addTag("Marshalling");
article.addTag("Unmarshalling");
return article;
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.