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


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



描述

這個java.util.Properties.storeToXML(OutputStream osString comment,String encoding)方法使用指定的編碼發出一個 XML 文檔,該文檔表示此表中包含的所有屬性。

聲明

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

public void storeToXML(OutputStream os,String comment, String encoding)

參數

  • out- 在其上發出 XML 文檔的輸出流。

  • comments- 屬性列表的描述,如果不需要注釋,則為 null。

返回值

此方法不返回值

異常

  • IOException- 如果將此屬性列表寫入指定的輸出流會引發 IOException。

  • ClassCastException- 如果此 Properties 對象包含任何不是字符串的鍵或值。

  • NullPointerException- 如果 out 為空。

示例

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

package com.tutorialspoint;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
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", "15");

      try {

         // create a output and input as a xml file
         FileOutputStream fos = new FileOutputStream("properties.xml");
         FileInputStream fis = new FileInputStream("properties.xml");

         // store the properties in the specific xml and a different encoding
         prop.storeToXML(fos, "Properties Example","ISO 8859");

         // print the xml. Notice that ISO 8859 isn't supported
         while (fis.available() > 0) {
            System.out.print("" + (char) fis.read());
         }
      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

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

Warning: The encoding 'ISO 8859' is not supported by the Java runtime.
Warning:encoding "ISO 8859" not supported, using UTF-8
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
<properties>
<comment>Properties Example</comment>
<entry key="Width">15</entry>
<entry key="Height">200</entry>
</properties>

相關用法


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