Java中的Writer類的write(int)方法用於在編寫器上寫入指定的字節值。使用作為整數值傳遞的字節值的ASCII值指定此字節值。該整數值用作參數。
用法:
public void write(int ascii)
參數:此方法接受強製性參數ascii,該參數是要寫入編寫器的字節值的ASCII值。
返回值:此方法不返回任何值。
以下方法說明了write(int)方法的用法:
示例1:
// Java program to demonstrate
// Writer write(int) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a Writer instance
Writer writer
= new PrintWriter(System.out);
// Write the byte value '0' to this writer
// using write() method
// This will put the string in the writer
// till it is printed on the console
writer.write(48);
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
輸出:
0
示例2:
// Java program to demonstrate
// Writer write(int) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a Writer instance
Writer writer
= new PrintWriter(System.out);
// Write the byte value 'A' to this writer
// using write() method
// This will put the string in the writer
// till it is printed on the console
writer.write(65);
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
輸出:
A
相關用法
- Java Writer getClass()用法及代碼示例
- Java Writer flush()用法及代碼示例
- Java Writer close()用法及代碼示例
- Java Writer equals()用法及代碼示例
- Java Writer toString()用法及代碼示例
- Java Writer write(char[])用法及代碼示例
- Java Writer write(String)用法及代碼示例
- Java Writer append(char)用法及代碼示例
- Java Writer append(CharSequence, int, int)用法及代碼示例
- Java Writer append(CharSequence)用法及代碼示例
- Java Writer write(String, int, int)用法及代碼示例
- Java Writer write(char[], int, int)用法及代碼示例
- Java Writer hashCode()用法及代碼示例
- Java Byte Array轉Writer用法及代碼示例
- Java Java.io.Writer用法及代碼示例
注:本文由純淨天空篩選整理自Code_r大神的英文原創作品 Writer write(int) method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。