CreateProcess error=2 running javadoc from Ant

后端 未结 6 1983
执笔经年
执笔经年 2021-02-04 02:56

Can anyone tell me why I am getting this error message

Buildfile: C:\\Users\\Tara\\workspace\\Testing\\build.xml
doc:
   [delete] Deleting directory C:\\Users\\         


        
6条回答
  •  醉话见心
    2021-02-04 03:35

    Add javadoc.exe to your build path.

    1. From the start menu, click on Control Panel > System (use classic view) to view system properties.
    2. In the System Properties window, click on Advanced to the left.
    3. Click on Environment Variables.
    4. In the list of System Variables, select Path and then press the Edit button. a window that allows you to alter the value of the Path variable.
    5. At the end of the text for the Path variable, add a semicolon and the directory path to Java (no spaces): eg. C:\Program Files\Java\jdk1.6.0_39\bin

提交回复
热议问题