NSJavaSetup

Loads the Java virtual machine with specified parameters. Javaバーチャルマシーンをこれら指定されたパラメータでロードします。

Declaration 宣言

id NSJavaSetup (
   NSDictionary *plist
);

Overview 概要

Part of the Java-to-Objective-C bridge. You normally shouldn’t use it yourself. Java-to-Objective-Cブリッジの一部です。あなたは通常はそれをあなた自身で使うべきではありません。

You can pass nil for the plist dictionary, in which case the Java virtual machine will not be loaded, so you should probably just use NSJavaSetupVirtualMachine instead. The plist dictionary may contain the following key-value pairs. あなたは、nilplist辞書に対して渡すことができます、その場合にはJava virtual machineはロードされません、それであなたはおそらく単にNSJavaSetupVirtualMachineを代わりに使うべきです。plist辞書は、以下のキー値ペアを含むかもしれません。

  • NSJavaRoot—An NSString indicating the root of the location where the application’s classes are.

  • NSJavaPath—An NSArray of NSStrings, each string containing one component of a class path whose components will be prepended by NSJavaRoot if they are not absolute locations.

  • NSJavaUserPath—An NSString indicating another segment of the class path so that the application developer can customize where the class loader should search for classes. When searching for classes, this path is searched after the application’s class path so that one cannot replace the classes used by the application.

  • NSJavaLibraryPath—An NSArray of NSStrings, each string containing one component of a path to search for dynamic shared libraries needed by Java wrappers. NSJavaLibraryPath— あるNSArrayで、NSStringいくつかからなります、各文字列は、Javaラッパーによって必要とされる動的共有ライブラリを検索するためのあるパスの1つの構成要素を含んでいます。

  • NSJavaClasses—An NSArray of NSStrings, each string containing the name of one class that the VM should load so that their associated frameworks will be loaded.

See Also 参照

Java Setup Functions Java設定関数