|
Java example source code file (IgnoreIgnorableCharactersInInput.java)
The IgnoreIgnorableCharactersInInput.java Java example source code/* * @test /nodynamiccopyright/ * @bug 7144981 * @summary javac should ignore ignorable characters in input * @run main IgnoreIgnorableCharactersInInput */ import com.sun.source.util.JavacTask; import java.io.File; import java.net.URI; import java.util.Arrays; import java.util.Set; import java.util.TreeSet; import javax.tools.JavaCompiler; import javax.tools.JavaFileObject; import javax.tools.SimpleJavaFileObject; import javax.tools.ToolProvider; public class IgnoreIgnorableCharactersInInput { public static void main(String... args) throws Exception { new IgnoreIgnorableCharactersInInput().run(); } void run() throws Exception { JavaCompiler comp = ToolProvider.getSystemJavaCompiler(); File classesDir = new File(System.getProperty("user.dir"), "classes"); classesDir.mkdirs(); JavaSource[] sources = new JavaSource[]{ new JavaSource("TestOneIgnorableChar", "AA\\u0000BB"), new JavaSource("TestMultipleIgnorableChar", "AA\\u0000\\u0000\\u0000BB")}; JavacTask ct = (JavacTask)comp.getTask(null, null, null, Arrays.asList("-d", classesDir.getPath()), null, Arrays.asList(sources)); try { if (!ct.call()) { throw new AssertionError("Error thrown when compiling test cases"); } } catch (Throwable ex) { throw new AssertionError("Error thrown when compiling test cases"); } check(classesDir, "TestOneIgnorableChar.class", "TestOneIgnorableChar$AABB.class", "TestMultipleIgnorableChar.class", "TestMultipleIgnorableChar$AABB.class"); if (errors > 0) throw new AssertionError("There are some errors in the test check the error output"); } /** * Check that a directory contains the expected files. */ void check(File dir, String... paths) { Set<String> found = new TreeSet Other Java examples (source code examples)Here is a short list of links related to this Java IgnoreIgnorableCharactersInInput.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.