写出文件到本地
Posted halo-漾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了写出文件到本地相关的知识,希望对你有一定的参考价值。
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); }
以上是关于写出文件到本地的主要内容,如果未能解决你的问题,请参考以下文章
javaFile的使用:将字符串写出到本地文件,大小0kb的原因