listing7-04_build.xml_loadingproperties
来自「着几乎所有智能机厂商都将有自己配套的App Store,甚至并非智能手机制造商的」· XML_LOADINGPROPERTIES 代码 · 共 17 行
XML_LOADINGPROPERTIES
17 行
<!-- Loading Ant properties is a handy way to make your script flexible
when several members of your team are using it.
In the following example the file ${user-name}-build.properties
is loaded. When your user name is "robot" then robot-build.properties
are loaded.
-->
<project name="example" default="showpaths">
<property file="${user.name}-build.properties" />
<property name="wtk.home" location="C:\WTK22" />
<property name="polish.home" location="C:\programs\J2ME-Polish" />
<target name="showpaths">
<echo message="wtk.home=${wtk.home}" />
<echo message="polish.home=${polish.home}" />
</target>
</project>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?