ファイルがあり、その名前がfile.txtだとします。これは、Javaのリフレクションメソッドのスクリプトで構成されています。その一部を次のように仮定します。
new <id> <class> <arg0> <arg1> … creates a new instance of <class> by using
a constructor that takes the given argument types and stores the result in <id>.
call <id> <method> <arg0> <arg1> … invokes the specified <method> that
takes the given arguments on the instance specified by <id> and prints the answer.
print <id> prints detailed information about the instance specified by <id>. See
below for Object details.
ファイルからのスクリプトは、プログラムで文字列として取得されます。リフレクションのために上記で指定した引数にどのように変換しますか。これについては盲目です!Javaが初めてなので、コードのヘルプを含む簡単な説明をいただければ幸いです。