[provide a description of the issue]
Environment
- Operating System:Windows 10 19042.985
- JDK version: 15.0.2
- Visual Studio Code version: 1.56.2
- Java extension version: v0.16.0
- Java Debugger extension version: v0.34.0
Steps To Reproduce
- Just open a simple dir(the parent includes chinese) and create a java source file to active java extension;
- import jar library
- Run code that uses library classes
- Errors happen
Current Result
terminal just says Exception in thread "main" java.lang.NoClassDefFoundError
Expected Result
running code as expected
Additional Informations
I just cpoy the args and input it into Java Process Console manualy,it works well.
import java.io.IOException;
import org.jsoup.Connection;
import org.jsoup.Jsoup;
class entry{
public static void main(String[] args) throws IOException {
Connection con = Jsoup.connect("http://www.baidu.com").followRedirects(true);
Connection.Response res = con.execute();
String text = res.body();
System.out.println(text+"\n");
}
}
by clicking run

manually input works well

[provide a description of the issue]
Environment
Steps To Reproduce
Current Result
terminal just says Exception in thread "main" java.lang.NoClassDefFoundError
Expected Result
running code as expected
Additional Informations
I just cpoy the args and input it into Java Process Console manualy,it works well.
by clicking run

manually input works well