zoukankan      html  css  js  c++  java
  • java文件读写操作

    常用的文件读写

    写文件:

    File file = new File("D://test.txt");
    		if(!file.exists()){
    			file.createNewFile();
    		}
    		try {
    			FileOutputStream out  = new FileOutputStream(file);
    			for(int i = 0;i < 5;i++){
    				StringBuffer buffer = new StringBuffer();
    				buffer.append("这是第"+(i+1)+"行的内容"+"
    ");
    				out.write(buffer.toString().getBytes());
    			}
    			out.close();
    		} catch (FileNotFoundException e) {
    			
    			e.printStackTrace();
    		}    
    

      

    读文件:

    File file = new File("D://test.txt");
    		if(!file.exists() || file.isDirectory()){
    			System.out.println("file is not exist");
    		}
    		BufferedReader reader = new BufferedReader(new FileReader(file));
    		String temp = "";
    		StringBuffer buffer = new StringBuffer();
    		temp = reader.readLine();
    		while(temp != null){
    			buffer.append(temp);
    			temp = reader.readLine();
    		}
    		reader.close();
    		System.out.println(buffer);
    

      

      

  • 相关阅读:
    Python import模块
    Python 内置函数
    Python Pickle序列化
    android xml布局文件属性说明
    android 中动画
    Android样式——Styles
    代码家
    Android UI目录
    Android 基本控件
    android and webview 网页应用
  • 原文地址:https://www.cnblogs.com/wanyong-wy/p/7722293.html
Copyright © 2011-2022 走看看