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 —————
January 30th, 2013 at 3:08 PM
How to run html program through java using command promt please reply fast sir
January 30th, 2013 at 3:30 PM
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…
January 31st, 2013 at 11:19 AM
// SECOND SOLUTION
Run HTML code from java program
// For more details see this page: http://docs.oracle.com/javase/tutorial/uiswing/components/html.html