• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

javadoc parameters

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm using Jbuilder 2005, and have the following file structure:
C:\Documents and Settings\aaa\My Documents\projects\web\src\com\xxxxxx\web\mvc\QueryServlet.java

The parameters I put in my javadoc configuration is "-author -d ($Docpath) ($FilePath)", the error I got when I run Javadoc is:
C:\Borland\JBuilder2005\jdk1.4\bin\javadoc.exe -author -d C:\Documents and Settings\aaa\My Documents\projects\web\doc; C:\Documents and Settings\aaa\My Documents\projects\web\src\com\xxxxxx\web\mvc\QueryServlet.java
javadoc: Illegal package name: "Settings\aaa\My" javadoc: Illegal package name: "Documents\projects\web\doc;" javadoc: Illegal package name: "C:\Documents" javadoc: Illegal package name: "Settings\aaa\My" javadoc: File not found: "Documents\projects\web\src\com\xxxxxx\web\mvc\QueryServlet.java" javadoc: warning - No source files for package and javadoc: warning - No source files for package and Loading source files for package and... Loading source files for package and... 5 errors 2 warnings

$Docpath = "C:\Documents and Settings\aaa\My Documents\projects\web\doc;"
$FilePath="C:\Documents and Settings\aaa\My Documents\projects\web\src\com\xxxxxx\web\mvc\QueryServlet.java"

It looks like the space in the directory name caused the problem. How can I fix it without change the directory name?
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Cathie,
Does JBuilder let you put the directory name in quotes?
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic