10

昨日、-Djsse.enableCBCProtection=falseJDK6u30で追加されたJavaのシステムプロパティに出くわしました。私は昨日までこれについて知りませんでした。

では、Javaバージョンでサポートされているシステムプロパティのリストとその意味をどこで見つけることができるかを誰かに教えてもらえますか?

4

2 に答える 2

8

これを使用して、サポートされているすべてのプロパティのリストを取得します。

    Properties props =  System.getProperties();
    System.out.println(props);

こちらもご覧ください。ほとんどが言及されています。

于 2012-05-26T07:48:31.230 に答える
5

There is not a single place with such a list. System properties are used all over the place by various parts of the Java environment, so you have to consult the documentation for the part you are using to see about their properties. For example the Java networking documentation describes several properties used by the URLConnection mechanism.

于 2012-05-26T07:45:55.790 に答える