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


Java Java.io.RandomAccessFile.writeUTF()用法及代碼示例



描述

這個java.io.RandomAccessFile.writeUTF(String str)方法使用修改後的 UTF-8 編碼以 machine-independent 方式將字符串寫入文件。

聲明

以下是聲明java.io.RandomAccessFile.writeUTF()方法。

public final void writeUTF(String str)

參數

str- 要寫入的字符串。

返回值

此方法不返回值。

異常

IOException− 如果發生 I/O 錯誤。

示例

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

package com.tutorialspoint;

import java.io.*;

public class RandomAccessFileDemo {
   public static void main(String[] args) {
   
      try {
         String s = "Hello world";

         // create a new RandomAccessFile with filename test
         RandomAccessFile raf = new RandomAccessFile("c:/test.txt", "rw");

         // write a string in the file
         raf.writeUTF(s);

         // set the file pointer at 0 position
         raf.seek(0);

         // read string
         System.out.println("" + raf.readUTF());

         // set the file pointer at 0 position
         raf.seek(0);

         // write a string at the start
         raf.writeUTF("This is an example");

         // set the file pointer at 0 position
         raf.seek(0);

         // read string
         System.out.println("" + raf.readUTF());
         
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

假設我們有一個文本文件c:/test.txt,其內容如下。該文件將用作我們示例程序的輸入 -

ABCDE  

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

Hello world
This is an example

相關用法


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