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

Last change on this file since 13060 was 12537, checked in by Don-vip, 7 years ago

PMD - VariableNamingConventions

  • Property svn:eol-style set to native
File size: 2.8 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 if (unencoded != null) {
61 for (int i = 0; i < unencoded.length(); ++i) {
62 String encS = null;
63 if (!keepApos || unencoded.charAt(i) != '\'') {
64 encS = ENCODING.get(unencoded.charAt(i));
65 }
66 if (encS != null) {
67 if (buffer == null) {
68 buffer = new StringBuilder(unencoded.substring(0, i));
69 }
70 buffer.append(encS);
71 } else if (buffer != null) {
72 buffer.append(unencoded.charAt(i));
73 }
74 }
75 }
76 return (buffer == null) ? unencoded : buffer.toString();
77 }
78
79 /**
80 * The output writer to save the values to.
81 */
82 private static final Map<Character, String> ENCODING = new HashMap<>();
83 static {
84 ENCODING.put('<', "&lt;");
85 ENCODING.put('>', "&gt;");
86 ENCODING.put('"', "&quot;");
87 ENCODING.put('\'', "&apos;");
88 ENCODING.put('&', "&amp;");
89 ENCODING.put('\n', "&#xA;");
90 ENCODING.put('\r', "&#xD;");
91 ENCODING.put('\t', "&#x9;");
92 }
93
94 @Override
95 public void close() throws IOException {
96 if (out != null) {
97 out.close();
98 }
99 }
100}
Note: See TracBrowser for help on using the repository browser.