source: josm/trunk/src/org/openstreetmap/josm/io/XmlWriter.java@ 9545

Last change on this file since 9545 was 9231, checked in by Don-vip, 8 years ago

javadoc update

  • Property svn:eol-style set to native
File size: 2.7 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4import java.io.Closeable;
5import java.io.IOException;
6import java.io.PrintWriter;
7import java.util.HashMap;
8import java.util.Map;
9
10/**
11 * Helper class to use for xml outputting classes.
12 *
13 * @author imi
14 */
15public class XmlWriter implements Closeable {
16
17 protected final PrintWriter out;
18
19 /**
20 * Constructs a new {@code XmlWriter}.
21 * @param out print writer
22 */
23 public XmlWriter(PrintWriter out) {
24 this.out = out;
25 }
26
27 /**
28 * Flushes the stream.
29 */
30 public void flush() {
31 if (out != null) {
32 out.flush();
33 }
34 }
35
36 /**
37 * Encode the given string in XML1.0 format.
38 * Optimized to fast pass strings that don't need encoding (normal case).
39 *
40 * @param unencoded the unencoded input string
41 * @return XML1.0 string
42 */
43 public static String encode(String unencoded) {
44 return encode(unencoded, false);
45 }
46
47 /**
48 * Encode the given string in XML1.0 format.
49 * Optimized to fast pass strings that don't need encoding (normal case).
50 *
51 * @param unencoded the unencoded input string
52 * @param keepApos true if apostrophe sign should stay as it is (in order to work around
53 * a Java bug that renders
54 * new JLabel("<html>'</html>")
55 * literally as 6 character string, see #7558)
56 * @return XML1.0 string
57 */
58 public static String encode(String unencoded, boolean keepApos) {
59 StringBuilder buffer = null;
60 for (int i = 0; i < unencoded.length(); ++i) {
61 String encS = null;
62 if (!keepApos || unencoded.charAt(i) != '\'') {
63 encS = XmlWriter.encoding.get(unencoded.charAt(i));
64 }
65 if (encS != null) {
66 if (buffer == null) {
67 buffer = new StringBuilder(unencoded.substring(0, i));
68 }
69 buffer.append(encS);
70 } else if (buffer != null) {
71 buffer.append(unencoded.charAt(i));
72 }
73 }
74 return (buffer == null) ? unencoded : buffer.toString();
75 }
76
77 /**
78 * The output writer to save the values to.
79 */
80 private static final Map<Character, String> encoding = new HashMap<>();
81 static {
82 encoding.put('<', "&lt;");
83 encoding.put('>', "&gt;");
84 encoding.put('"', "&quot;");
85 encoding.put('\'', "&apos;");
86 encoding.put('&', "&amp;");
87 encoding.put('\n', "&#xA;");
88 encoding.put('\r', "&#xD;");
89 encoding.put('\t', "&#x9;");
90 }
91
92 @Override
93 public void close() throws IOException {
94 if (out != null) {
95 out.close();
96 }
97 }
98}
Note: See TracBrowser for help on using the repository browser.