< prev index next >

test/java/nio/charset/spi/CharsetTest.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 19,34 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! import java.io.*; ! import java.nio.charset.*; ! import java.util.*; ! ! public class Test { private static PrintStream out = System.err; private static final SortedMap available = Charset.availableCharsets(); private static void fail(String csn, String msg) { --- 19,36 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! import java.io.InputStreamReader; ! import java.io.PrintStream; ! import java.nio.charset.Charset; ! import java.nio.charset.UnsupportedCharsetException; ! import java.util.Iterator; ! import java.util.SortedMap; ! public class CharsetTest { private static PrintStream out = System.err; private static final SortedMap available = Charset.availableCharsets(); private static void fail(String csn, String msg) {
< prev index next >