System.console() returns null

后端 未结 12 841
有刺的猬
有刺的猬 2020-11-22 04:55

I was using readLine of BufferedReader to get input/new password from user, but wanted to mask the password so I am trying to use java.io.Con

12条回答
  •  有刺的猬
    2020-11-22 05:43

    System.console() returns null if there is no console.

    You can work round this either by adding a layer of indirection to your code or by running the code in an external console and attaching a remote debugger.

提交回复
热议问题