标签: c linux java-native-interface terminal-emulator
我正在做一个功课,其中包括使用JNI从Java调用C语言的几个本机函数。 其中一项功课是将当前终端标题更改为用户想要的任何内容。 我已经研究过,但我无法在Linux上完成这个:(。 我试过用这个:
printf("%c]0;%s%c", '\033', "My Console Title", '\007');
但它不起作用:(。 任何解决方案?