首页 > 代码库 > 写出文件到本地
写出文件到本地
File file = new File("C:/Users/dao/Desktop/file.html"); //指定要写到那个文件。 if (!file.exists()) { //检测是否存在,不存在,新建文件 try { file.createNewFile(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } try { FileOutputStream fileOutputStream = new FileOutputStream(file); //新建一个文件输出流对象。 fileOutputStream.write(content.getBytes()); //以字节的方式写出。 fileOutputStream.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); }
还可以把FileOutputStream 转换成 OutPutStreamWriter对象和BufferedWriter对象来输出。
try { FileOutputStream fileOutputStream = new FileOutputStream(file); OutputStreamWriter outputStreamWriter = new OutputStreamWriter(fileOutputStream,"utf-8"); outputStreamWriter.writer(content); //字符流输出 。 BufferedWriter bufferedWriter = new BufferedWriter(outputStreamWriter); //缓存字符流输出。 bufferedWriter.write(content); // fileOutputStream.write(content.getBytes()); // fileOutputStream.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); }
直接从InputStream输入流中去字节写出
int tempByte = -1; while((tempByte=input.read())>0){ fileoutputStream.write(tempByte); }
写出文件到本地
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。