Forum: Java Aug 4th, 2004 |
| Replies: 4 Views: 4,152 At the dos command prompt I tried "javac Welcome1.java" and I get...... 'javac' is not recognized as an internal or external command, operable program or batch file. |
Forum: Java Aug 3rd, 2004 |
| Replies: 4 Views: 4,152 used following in MS-DOSS command window
public class Welcome1 {
/*method*/
public static void main( String args [])
{
System.out.println( "Welcome to Java Programming!" );
}/*end... |