Note that there are some explanatory texts on larger screens.

plurals
  1. POC# Java applet activity in webbrowser written to list
    text
    copied!<p>I have a web browser which navigates to a java applet. When the game is loaded so is java on my computer of course. If I go to the console in oracle java on my pc I can see all the activity in the applet. Is it somehow possible to get this activity written to a list in my C# program?</p> <p>I use WebKit Net as my browser. <br> I use the newest version of Oracle Java on my pc.</p> <p>The java applet is on a page I access with my browser like this:</p> <pre><code> public Form1() { WebBrowser.Navigate("http://TheJavaAppletPage/JavaApplet.asp"); } </code></pre> <p>Here is an example of the console output:</p> <blockquote> <p>Java Plug-in 1.6.0_29 Using JRE version 1.6.0_29-b11 Java HotSpot(TM)<br> Client VM User home directory = C:\Users\Administrator<br> ---------------------------------------------------- <br>c: clear console window <br>f: finalize objects on finalization queue <br>g: garbage collect <br>h: display this help message <br>l: dump classloader list <br>m: print memory usage <br>o: trigger logging <br>q: hide console <br>r: reload policy configuration<br> s: dump system and deployment properties <br>t: dump thread list <br>v: dump thread stack <br>x: <br>clear classloader cache 0-5: set trace level to <br> ----------------------------------------------------<br> Preloading image: images/boy_offline.gif<br> Preloading image: images/girl_offline.gif<br> Preloading image: images/answer.gif<br> Preloading image: images/friends_contract.gif <br>Preloading image: images/friends_expand.gif <br>Dest: 'http://www.TheJavaAppletPage.com/navigation/JavaApplet.asp', target:'navigation' <br>Connecting to: srv.TheJavaAppletPage.com<br> Connecting to: srv.TheJavaAppletPage.com <br>Succesfully connected to: srv.TheJavaAppletPage.com</p> </blockquote>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload