开发者

How can I provide inputs to a java application during run-time, through netbeans window?

开发者 https://www.devze.com 2023-02-20 03:31 出处:网络
How can I provide inputs to a java application during run-time, through netbeans window ? or through any dialog box ??

How can I provide inputs to a java application during run-time, through netbeans window ? or through any dialog box ??

I know there is an option to add parameters through the project property window, but it does not help to 开发者_StackOverflow社区add run-time inputs.


Define an input stream like this:

BufferedReader b = new BufferedReader(new InputStreamReader(System.in)); //input buffer 

and then use it to take command-line input like this:

a=b.readLine();


I don't know why you want to do this in "netbeans" but to java programs you can provide inputs in this ways:

  1. read file
  2. read standard input
  3. use swing components which read input
  4. to only debugging purpose: use debug mode and breakpoint to stop and change any variables
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号