2525
2626/**
2727 * Converts String to and from bytes using the encodings required by the Java specification. These encodings are specified in <a
28- * href="http://download.oracle.com/javase/1.5.0 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
28+ * href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
2929 *
3030 * @see CharEncoding
31- * @see <a href="http://download.oracle.com/javase/1.5.0 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
31+ * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
3232 * @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
3333 * @version $Id$
3434 * @since 1.4
@@ -62,7 +62,7 @@ private static byte[] getBytes(String string, Charset charset) {
6262 * Thrown if {@link Charsets#ISO_8859_1} is not initialized, which should never happen since it is
6363 * required by the Java platform specification.
6464 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
65- * @see <a href="http://download.oracle.com/javase/1.5.0 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
65+ * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
6666 * @see #getBytesUnchecked(String, String)
6767 */
6868 public static byte [] getBytesIso8859_1 (String string ) {
@@ -111,7 +111,7 @@ public static byte[] getBytesUnchecked(String string, String charsetName) {
111111 * Thrown if {@link Charsets#US_ASCII} is not initialized, which should never happen since it is
112112 * required by the Java platform specification.
113113 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
114- * @see <a href="http://download.oracle.com/javase/1.5.0 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
114+ * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
115115 * @see #getBytesUnchecked(String, String)
116116 */
117117 public static byte [] getBytesUsAscii (String string ) {
@@ -129,7 +129,7 @@ public static byte[] getBytesUsAscii(String string) {
129129 * Thrown if {@link Charsets#UTF_16} is not initialized, which should never happen since it is
130130 * required by the Java platform specification.
131131 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
132- * @see <a href="http://download.oracle.com/javase/1.5.0 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
132+ * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
133133 * @see #getBytesUnchecked(String, String)
134134 */
135135 public static byte [] getBytesUtf16 (String string ) {
@@ -147,7 +147,7 @@ public static byte[] getBytesUtf16(String string) {
147147 * Thrown if {@link Charsets#UTF_16BE} is not initialized, which should never happen since it is
148148 * required by the Java platform specification.
149149 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
150- * @see <a href="http://download.oracle.com/javase/1.5.0 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
150+ * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
151151 * @see #getBytesUnchecked(String, String)
152152 */
153153 public static byte [] getBytesUtf16Be (String string ) {
@@ -165,7 +165,7 @@ public static byte[] getBytesUtf16Be(String string) {
165165 * Thrown if {@link Charsets#UTF_16LE} is not initialized, which should never happen since it is
166166 * required by the Java platform specification.
167167 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
168- * @see <a href="http://download.oracle.com/javase/1.5.0 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
168+ * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
169169 * @see #getBytesUnchecked(String, String)
170170 */
171171 public static byte [] getBytesUtf16Le (String string ) {
@@ -183,7 +183,7 @@ public static byte[] getBytesUtf16Le(String string) {
183183 * Thrown if {@link Charsets#UTF_8} is not initialized, which should never happen since it is
184184 * required by the Java platform specification.
185185 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
186- * @see <a href="http://download.oracle.com/javase/1.5.0 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
186+ * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
187187 * @see #getBytesUnchecked(String, String)
188188 */
189189 public static byte [] getBytesUtf8 (String string ) {
0 commit comments