Java Properties list() 方法



描述

Java Properties list(PrintStream out) 方法将此属性列表打印到指定的输出流。此方法可用于调试。

声明

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

public void list(PrintStream out)

参数

out − 输出流。

返回值

此方法不返回值。

异常

ClassCastException − 如果此属性列表中的任何键都不是字符串。

Java Properties list(PrintWriter out) 方法

描述

java.util.Properties.list(PrintWriter out) 方法将此属性列表打印到指定的输出流。此方法可用于调试。

声明

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

public void list(PrintWriter out)

参数

out − 输出流。

返回值

此方法不返回值。

异常

ClassCastException − 如果此属性列表中的任何键都不是字符串。

将属性的键值对列出到控制台示例

以下示例演示了如何使用 Java Properties list(PrintStream) 方法将属性打印到流。我们使用 System.out 作为 PrintStream。

package com.tutorialspoint;

import java.util.Properties;

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

使用 PrintWrite 将属性的键值对列出到控制台示例

以下示例演示了如何使用 Java Properties list(PrintWriter) 方法将属性打印到 writer 对象。我们使用 System.out 作为 PrintWriter。

package com.tutorialspoint;

import java.io.PrintWriter;
import java.util.Properties;

public class PropertiesDemo {
   public static void main(String[] args) {
      Properties prop = new Properties();
      PrintWriter writer = new PrintWriter(System.out);

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

      // print the list with a PrintWriter object
      prop.list(writer);

      // flush the stream
      writer.flush();
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

-- listing properties --
Width = 150
Height = 200
Scannable = true
java_util_properties.htm
广告