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.

loadfile.html 1.9 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <html>
  2. <head>
  3. <title>LoadFile</title>
  4. </head>
  5. <body>
  6. <h2><a name="loadfile">LoadFile</a></h2>
  7. <h3>Description</h3>
  8. <p>
  9. Load a text file into a single property. Unless an encoding is specified,
  10. the encoding of the current locale is used. There is no explicit limit
  11. upon the size of the file which can be loaded, but loading very large
  12. files is not something anyone has yet explored.
  13. </p>
  14. <h3>Parameters</h3>
  15. <table border="1" cellpadding="2" cellspacing="0">
  16. <tr>
  17. <td valign="top"><b>Attribute</b></td>
  18. <td valign="top"><b>Description</b></td>
  19. <td align="center" valign="top"><b>Required</b></td>
  20. </tr>
  21. <tr>
  22. <td valign="top">srcFile</td>
  23. <td valign="top">source file</td>
  24. <td valign="top" align="center">Yes</td>
  25. </tr>
  26. <tr>
  27. <td valign="top">property</td>
  28. <td valign="top">property to save to</td>
  29. <td valign="top" align="center">Yes</td>
  30. </tr>
  31. <tr>
  32. <td valign="top">encoding</td>
  33. <td valign="top">encoding to use when loading the file</td>
  34. <td align="center" valign="top">No</td>
  35. </tr>
  36. <tr>
  37. <td valign="top">failonerror</td>
  38. <td valign="top">Whether to halt the build on failure</td>
  39. <td align="center" valign="top">No, default "true"</td>
  40. </tr>
  41. </table>
  42. <h3>Examples</h3>
  43. <pre> &lt;loadfile property="mail.recipients"
  44. srcFile="recipients.txt" / &gt;
  45. </pre>
  46. Load file recipients.txt into property "mail.recipients"
  47. <pre> &lt;loadfile property="encoded-file"
  48. srcFile="loadfile.xml"
  49. encoding="ISO-8859-1" / &gt;
  50. </pre>
  51. Load a file using the latin-1 encoding
  52. <pre> &lt;loadfile
  53. property="optional.value"
  54. srcFile="optional.txt"
  55. failonerror="false" /&gt;
  56. </pre>
  57. Load a file, don't fail if it is missing (a message is printed, though)
  58. <hr>
  59. <p align="center">Copyright &copy; 2000,2001 Apache Software Foundation. All rights
  60. Reserved.</p>
  61. </body>
  62. </html>