This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 56221 - Output window not allow user input
Summary: Output window not allow user input
Status: RESOLVED DUPLICATE of bug 47708
Alias: None
Product: projects
Classification: Unclassified
Component: Ant (show other bugs)
Version: 4.x
Hardware: All Windows XP
: P2 blocker (vote)
Assignee: Jesse Glick
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-03-11 00:19 UTC by spyguy
Modified: 2005-03-12 13:58 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description spyguy 2005-03-11 00:19:20 UTC
I'm having problems with user input while running a program.  The help menu 
documentation says that when you prompt a user for keyboard input a new tab 
and cursor is suppose to appear in the output window.  Well I've run this 
program many times and it seems that it skips this step all together.  I 
assume my code is correct as when I run it in a command line window I am able 
to type my input.  Here is the test code that I created to test this.

/*
 * Main.java
 *
 * Created on March 10, 2005, 10:58 AM
 */

package classapptester;

/**
 *
 * @author jcheung
 */

import java.io.*;

public class TEST
{
    
    /** System.in variable */
    private static BufferedReader stdin = new BufferedReader(new 
InputStreamReader(System.in));
    
    
    public static void main(String[] argv) throws IOException
    {
        String daString;
        
        daString = stdin.readLine ();
        System.out.println (daString);
    }
 
}
Comment 1 Marian Mirilovic 2005-03-11 06:28:20 UTC

*** This issue has been marked as a duplicate of 47708 ***
Comment 2 khrau 2005-03-12 13:58:02 UTC
I have the same problem!!