Is it possible to capture the text of say a Edit Box or Label control on a Java Applet?
In a more traditional Win32 program this can be accomplished using FindWindow
, FindWindowEx
together with things like GetWindowText
.
I have investigated with WinSpy but the Java Applet is just one large window with no children.
I am wondering if there is some similar method, perhaps specific to Java, that we could use for a Java Applet.
You need to look up the API docs for javax.swing.JLabel and javax.swing.JTextArea. These are the classes that implement a text box or a label. These classes provide mechanisms for getting the value from the controls.
For example:
Will get the text entered in the text area.