I have a Java application in which I wish to call to another C++ application. For that, in my Java I call
Runtime.exec(args)
My arg is "HelloWorldèçàœ".
When my C++ recives this arg, it sees it as "HelloWorld????". I looked in memory map and the characters èçàœ appear as 3f 3f 3f 3f.
( In addition, I am not sure that this is relevant, but when I compiled my C++, I have chosen the option: "Character Set = Use Multi-Byte Character Set" (in Properties->General). )
Q: How can I pass such a param from Java to C++?
Thanks