當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.util.Properties.list()用法及代碼示例



描述

這個java.util.Properties.list(PrintStream out)方法將此屬性列表打印到指定的輸出流。此方法對於調試很有用。

聲明

以下是聲明java.util.Properties.list()方法

public void list(PrintStream out)

參數

out─ 輸出流。

返回值

此方法不返回值。

異常

ClassCastExceptionâˆ' 如果此屬性列表中的任何鍵不是字符串。

示例

下麵的例子展示了 java.util.Properties.list() 方法的用法。

package com.tutorialspoint;

import java.util.*;

public class PropertiesDemo {
   public static void main(String[] args) {
      Properties prop = new Properties();

      // add some properties
      prop.put("Height", "200");
      prop.put("Width", "150");
      prop.put("Scannable", "true");

      // print the list with System.out
      prop.list(System.out);
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

-- listing properties --
Width = 150
Height = 200
Scannable = true

相關用法


注:本文由純淨天空篩選整理自 Java.util.Properties.list() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。