打印流输出文件
程序员文章站
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();
}
}
上一篇: 用函数写二分查找
下一篇: POJ 3685 Matrix 二分嵌套