You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

echo.html 1.7 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Apache Ant User Manual</title>
  5. </head>
  6. <body>
  7. <h2><a name="echo">Echo</a></h2>
  8. <h3>Description</h3>
  9. <p>Echoes a message to System.out or a file.</p>
  10. <h3>Parameters</h3>
  11. <table border="1" cellpadding="2" cellspacing="0">
  12. <tr>
  13. <td valign="top"><b>Attribute</b></td>
  14. <td valign="top"><b>Description</b></td>
  15. <td align="center" valign="top"><b>Required</b></td>
  16. </tr>
  17. <tr>
  18. <td valign="top">message</td>
  19. <td valign="top">the message to echo.</td>
  20. <td valign="top" align="center">Yes, unless data is included in a
  21. character section within this element.</td>
  22. </tr>
  23. <tr>
  24. <td valign="top">file</td>
  25. <td valign="top">the file to write the message to.</td>
  26. <td valign="top" align="center">No</td>
  27. </tr>
  28. <tr>
  29. <td valign="top">append</td>
  30. <td valign="top">Append to an existing file?</td>
  31. <td valign="top" align="center">No - default is false.</td>
  32. </tr>
  33. <tr>
  34. <td valign="top">level</td>
  35. <td valign="top">Control the level at which this message is reported.
  36. One of "error", "warning", "info", "verbose", "debug"</td>
  37. <td valign="top" align="center">No - default is "warning".</td>
  38. </tr>
  39. </table>
  40. <h3>Examples</h3>
  41. <pre> &lt;echo message=&quot;Hello world&quot;/&gt;</pre>
  42. <pre>
  43. &lt;echo&gt;
  44. This is a longer message stretching over
  45. two lines.
  46. &lt;/echo&gt;
  47. </pre>
  48. <pre>&lt;echo message=&quot;Deleting drive C:&quot;
  49. level=&quot;debug&quot; /&gt;</pre>
  50. <hr>
  51. <p align="center">Copyright &copy; 2000,2001 Apache Software Foundation. All rights
  52. Reserved.</p>
  53. </body>
  54. </html>