很多时候,你想在终端上实现想password ,那样可是用c 程序实现自己的在终端上并不显示你的内容。但是是怎么做到的,今天我看到一个学长的分享,觉得是个好东西。。
#include
#include
#include
#include
#include
int main( int argc, char *argv[] )
{
char input[20];
struct termios oldsetting,newsetting;
tcgetattr ( fileno( stdin ),&oldsetting );
newsetting = oldsetting;
newsetting.c_lflag &=~ECHO;
tcsetattr( fileno ( stdin ),TCSANOW,&newsetting );
gets ( input );
tcsetattr ( fileno ( stdin ),TCSANOW,&oldsetting );
printf ( "%s\n",input );
return 0;
}
还有一种实现的方法:
#include
#include
#include
int main( int argc, char *argv[] )
{
char input[20];
system ( "stty -echo" );
gets ( input );
system ( "stty echo " );
printf ( "%s\n",input );
return 0;
}
阅读(1582) | 评论(2) | 转发(0) |