examples.bat

このバッチ ファイルは、前回の実行から作成されたファイルをクリーンアップした後、各例をコンパイルして実行します。このファイルの内容は次のようになります。

@echo off
call cleanup
echo Example01 - Export / Import File.
call example example01
echo Example02 - Export / Import with XSLT stylesheets.
call example example02
echo Example03 - Export / Import with Occurs Depending.
call example example03
echo Example04 - Export / Import with sparse arrays.
call example example04
echo Example05 - Export / Import Text.
call example example05
echo Example06 - Export / Import with directory polling.
mkdir stamp
call example example06
echo Example07 - Export / Well-Formed File / Validate File.
call example example07
echo Example08 - Export / Well-Formed Text / Validate Text.
call example example08
echo Example09 - Export / Transform / Import.
call example example09
echo Example10 - Well-Formed / Validate diagnostics.
call example example10
echo Example11 - Import with missing intermediate names.
call example example11

このバッチ ファイルにパラメーターはありません。実行するには、コマンド ラインで次のコマンドを入力します。

examples

注: UNIX システムでは、Windows 上の examples.bat と同じ目的のために、examples.sh という名前のスクリプトが用意されています。