Print流
import java.io.*;
public class Test{
public static void main(String[] args) throws Exception{
DataOutputStream sjl=new DataOutputStream(new FileOutputStream("E:/a.txt"));
sjl.writeLong(12345);
//DataOutputStream中的writeXXX(data)方法的結果是計算機識別的二進位制形式
sjl.close();
System.out.println(12345);
System.out.printf("%#X\n",12345);
//PrintStream pl=new PrintStream(new FileOutputStream("E:/b.txt"));
//PrintStream中的println(data)方法的結果是以人們習慣看到的字串形式
//pl.println(12345);
//pl.close();
}
}
import java.io.*;
public class Test{
public static void main(String[] args) throws Exception{
//DataOutputStream sjl=new DataOutputStream(new FileOutputStream("E:/a.txt"));
//sjl.writeLong(12345);
//DataOutputStream中的writeXXX(data)方法的結果是計算機識別的二進位制形式
//sjl.close();
//System.out.println(12345);
//System.out.printf("%#X\n",12345);
PrintStream pl=new PrintStream(new FileOutputStream("E:/b.txt"));
//PrintStream中的println(data)方法的結果是以人們習慣看到的字串形式
pl.println(12345);
pl.close();
}
}
import java.io.*;
public class Test{
public static void main(String[] args) throws Exception{
PrintStream pl=new PrintStream("E:/c.txt");
System.setOut(pl);
System.out.println("大家好");
}
}
import java.io.*;
import java.util.Scanner;
public class Test{
public static void main(String[] args) throws Exception{
PrintStream plzq=null;
PrintStream plcw=null;
Scanner ss=null;
try{//try要從建立流物件開始
plzq=new PrintStream("E:/111.txt");
plcw=new PrintStream("E:/222.txt");
ss=new Scanner(System.in);
int shuzi;
System.setOut(plzq);//是輸出到什麼位置
System.setErr(plcw);//專門用來輸出錯誤的
while(true){
shuzi=ss.nextInt();
System.out.println(shuzi);
}
}
catch(Exception e){
System.err.println("輸出有誤");
}
}
}
相關文章
- JavaScript print()JavaScript
- python print 用法Python
- 字串函式 print ()字串函式
- print基礎用法
- 655-Print Binary Tree
- pycharm print 加顏色PyCharm
- print 與 println 的區別
- WPF open image and print as pdf file
- python3 print報錯Python
- Print輸出顏色字型方法
- python ruturn 和 print 的區別Python
- exclude Log4j print Log
- python3.6print怎麼用Python
- Python 3 進階 —— print 列印和輸出Python
- window.print —— 瀏覽器列印掃盲瀏覽器
- 使用pycharm print不輸出怎麼辦PyCharm
- 陣列對換,print函式傳參陣列函式
- 如何用python3輸出print對齊?Python
- PHP中的輸出:echo、print、printf、sprintf、pPHP
- python3中 print不加括號報錯!Python
- 自帶的 print 函式居然會報錯?函式
- Flutter冷知識 | 獲取dart的print內容FlutterDart
- Python print函式引數詳解以及效果展示Python函式
- python的print函式不要換行怎麼寫Python函式
- 簡單介紹python的input,print,eval函式Python函式
- 告別Print,使用IceCream進行高效的Python除錯Python除錯
- python中print()有什麼用?常用引數有哪些?Python
- 一個後臺靜態模板,自帶excel,print,cvsExcel
- @media print可以用來控制web列印樣式嗎?Web
- 流------緩衝流、轉換流、序列化流、列印流
- 前端網頁列印外掛print.js(可匯出pdf)前端網頁JS
- pythn print格式化輸出———“%s 和 % d” 都是什麼意思?
- GitHub 熱門:別再用 print 輸出來除錯程式碼了Github除錯
- Pytnon變數print列印計數顯示前面補零 0001、0002變數
- IO流(03)--序列化流、列印流
- java處理流 和節點流(在位元組流和字元流中,又分為處理流和節點流)Java字元
- python迴圈遍歷字典: title_content_list.append([key, value])print(tiPythonAPP
- Python print函式控制檯中文輸出16進位制問題Python函式