Jan

17

Welcome to Ram Gopal Gupta Blog, to share our knowledge..

 

 

 

 

 

 

 

 

 

 


3 Responses to “Welcome Post”

  1. Jitesh Says:

    How to run html program through java using command promt please reply fast sir

  2. Ram Gopal Gupta Says:

    Not directly but i think indirectly you can do it. Follow the below instructions:

    1- //———– save below code in ApH.java file then complile it using javac ApH.java —————
    import java.applet.*;
    import java.awt.*;
    public class ApH extends Applet {
    public void paint(Graphics g){
    g.drawString(“TEST STRING”,50,50);
    }
    }
    2- //———– save below code in ApH.html file then run from commanf prompt by writing ApH.html only —————

    try this…

  3. Ram Gopal Gupta Says:

    // SECOND SOLUTION
    Run HTML code from java program

    // For more details see this page: http://docs.oracle.com/javase/tutorial/uiswing/components/html.html

Leave a Reply