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

保存文件内容

程序员文章站 2022-06-07 18:36:12
...
public class SaveDocument {
	public static void main(String[] args) {
	    try {
	        String content =  "content";
	        byte[] bytes = str.getBytes("utf-8");
	        FileOutputStream fos= new FileOutputStream("director");
	        fos.write(bytes);
	        fos.close();
	    } catch (Exception e) {
	        e.printStackTrace();
	    }
	}
}
相关标签: 实操