-4

Following error from cmd.

C:\program files\java\jdk1.7.0_71\bin is not recognise an an internal or external command, operable program or batch file

Paul
  • 2,620
  • 2
  • 17
  • 27

2 Answers2

1

C:\program files\java\jdk1.7.0_71\bin this is a directory . try "C:\program files\java\jdk1.7.0_71\bin\java.exe"

npocmaka
  • 55,367
  • 18
  • 148
  • 187
1

If you're trying to set Java path in your Windows System, Try this Close cmd and follow these steps

Open environment Variables in System Variables edit PATH and Paste this C:\program files\java\jdk1.7.0_71\bin;

Now open cmd and type javac to check.

Subramanyam M
  • 335
  • 2
  • 6
  • 18