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


Java Java.io.StreamTokenizer.quoteChar()用法及代碼示例



描述

這個java.io.StreamTokenizer.quoteChar(int ch)方法指定此字符的匹配對在此標記器中分隔字符串常量。

當 nextToken 方法遇到字符串常量時,ttype 字段設置為字符串分隔符,sval 字段設置為字符串的主體。

如果遇到字符串引號字符,則識別字符串,該字符串由字符串引號字符之後(但不包括)到(但不包括)下一次出現的相同字符串引號字符或行終止符組成, 或文件結尾。通常的轉義序列(例如 "\n" 和 "\t")在解析字符串時被識別並轉換為單個字符。

清除指定字符的任何其他屬性設置。

聲明

以下是聲明java.io.StreamTokenizer.quoteChar()方法。

public void quoteChar(int ch)

參數

ch─ 角色。

返回值

此方法不返回值。

異常

NA

示例

下麵的例子展示了使用java.io.StreamTokenizer.quoteChar()方法。

package com.tutorialspoint;

import java.io.*;

public class StreamTokenizerDemo {
   public static void main(String[] args) {
      String text = "Hello. This is a text \n that will be split "
         + "into tokens. 1 + 1 = 2";
         
      try {
         // create a new file with an ObjectOutputStream
         FileOutputStream out = new FileOutputStream("test.txt");
         ObjectOutputStream oout = new ObjectOutputStream(out);

         // write something in the file
         oout.writeUTF(text);
         oout.flush();

         // create an ObjectInputStream for the file we created before
         ObjectInputStream ois =  new ObjectInputStream(new FileInputStream("test.txt"));

         // create a new tokenizer
         Reader r = new BufferedReader(new InputStreamReader(ois));
         StreamTokenizer st = new StreamTokenizer(r);

         // specify o as a quote char
         st.quoteChar('o');

         // print the stream tokens
         boolean eof = false;
         
         do {
            int token = st.nextToken();

            switch (token) {
               case StreamTokenizer.TT_EOF:
                  System.out.println("End of File encountered.");
                  eof = true;
                  break;
                  
               case StreamTokenizer.TT_EOL:
                  System.out.println("End of Line encountered.");
                  break;
                  
               case StreamTokenizer.TT_WORD:
                  System.out.println("Word:" + st.sval);
                  break;
                  
               case StreamTokenizer.TT_NUMBER:
                  System.out.println("Number:" + st.nval);
                  break;
                  
               default:
                  System.out.println((char) token + " encountered.");
                  
                  if (token == '!') {
                     eof = true;
                  }
            }
         } while (!eof);

      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

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

Word:AHell
o encountered.
Word:that
Word:will
Word:be
Word:split
Word:int
o encountered.
Word:kens.
Number:1.0
+ encountered.
Number:1.0
= encountered.
Number:2.0
End of File encountered.

相關用法


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