Tagged Questions

2
votes
4answers
139 views

Passing command line unicode argument to Java code

I have to pass command line argument which is Japanese to Java main method. If I type Unicode characters on command-line window, it displays '?????' which is OK, but the value passed to java program ...
1
vote
4answers
1k views

Is it possible to use a Unicode “argv”?

I'm writing a little wrapper for an application that uses files as arguments. The wrapper needs to be in Unicode, so I'm using wchar_t for the characters and strings I have. Now I find myself in a ...