Jinbo Wang

Results 332 comments of Jinbo Wang
trafficstars

> the debugging port specified on the jwdp agent must be open on the debuggee machine in order to accept the client (debugger) connection Correct.

Could you pls take a look at the troubleshooting guide for encoding issues? https://github.com/microsoft/vscode-java-debug/blob/main/Troubleshooting_encoding.md

You could add `"encoding": "UTF-8"` to your **launch.json**, that will force your Java app to use UTF-8 for IO. BTW, VS Code also allows you to specify a profile for...

> well it weird because at the bottom right it was on UTF-8 This is the encoding of your source files. It is not necessarily the same as the IO...

@WildFearless Since your terminal code page is 65001, which is code page for UTF-8. Could you try to add a setting `"java.debug.settings.vmArgs": "-Dfile.encoding=UTF-8"` to your workspace _.vscode/settings.json_? This will force...

This is a limitation of Windows terminal. If you manually run this Java command in terminal like ps and cmd, it cannot print the bullet Unicode character either. You can...

@itayasaf1990xd You could try to add a VS Code setting `"java.debug.settings.vmArgs": "-Dfile.encoding=UTF-8"`, which will tell the debugger to use `UTF-8` to run your app.

Have supported Chinese version for user settings and launch.json configurations. Help wanted for other locales.

If we support **Continue All threads** feature, do you think it will mitigate the pain point in your case?

The request is to allow setting the suspend policy of the breakpoint. - SUSPEND_ALL: Suspend all threads when the event occurs. - SUSPEND_EVENT_THREAD: Suspend only the thread which generated the...