Run-time compiling trouble.
Hello. I wrote the simple command-prompt program that tries to compile existent java code. Any tries are ends with message: error: Can't read: d:\vcs\tries\test.java
1 error
[done in 481 ms]
There are code:
String[] args = {"-g","-verbose","-classpath","D:/MyDocs/OWN/classes/","-d", "D:/MyDocs/OWN/classes/", "d:\vcs\tries\test.java"};
sun.tools.javac.Main compiler = new sun.tools.javac.Main(System.out,"javac");
compiler.compile(args);
I will be happy to any ideas. Thanks in advance

