欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

打印流输出文件

程序员文章站 2024-03-17 15:09:16
...

桌面路径

FileSystemView fsv = FileSystemView.getFileSystemView();
File com=fsv.getHomeDirectory();   
System.out.println(com.getPath()); //这便是桌面的具体路径

打印流输出文件

打印换行需要\r\n,单个\n不起作用

public static void main(String[] args) {
		File toFile = new File("E:/Temp/Test1.txt");
		PrintStream ps = null;
		OutputStream os = null;
		try {
			// ps = new PrintStream(toFile);//可直接传File
			os = new FileOutputStream(toFile, true);//true在原文件上追加
			ps = new PrintStream(os, true);//true自动刷新
 
			ps.println(10);
			ps.println("HelloWorld");
 
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} finally {
			ps.close();
		}
 
	}