【字符輸出流:OutputStreamWriter:輸出字符串】


package test;

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;

/**
 * @author shusheng
 * @description
 * @Email shusheng@yiji.com
 * @date 2018/11/12 11:00
 */
public class OutputStreamWriteDemo2 {

    public static void main(String[] args) throws IOException {
        OutputStreamWriter osw = new OutputStreamWriter(
                new FileOutputStream("C:\\Users\\shusheng\\Pictures\\111.txt"));
        String chs = "abcdefg";
        osw.write(chs,1,3);
        osw.write(chs);
        osw.close();
    }

}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM