程序的内存向持久化输出
    在写入文件的时候 文件不存在会自动创建的
    文件在写入的时候 默认是覆盖原文件
    如果不想覆盖 而是想添加 那就在构造器后面加一个参数 true

    1. //创建文件对象
    2. File file = new File("2.txt");//相对于当前项目路径
    3. //创建流
    4. FileWriter writer =null;
    5. try {
    6. writer =new FileWriter(file,true);
    7. } catch (IOException e) {
    8. // TODO Auto-generated catch block
    9. e.printStackTrace();
    10. }
    11. //写入
    12. String string = "我是斩杀大师大师大师看机会的卡仕达";
    13. //toCharArray() 将字符串转成字符数组
    14. try {
    15. writer.write(string.toCharArray());
    16. } catch (IOException e) {
    17. // TODO Auto-generated catch block
    18. e.printStackTrace();
    19. }finally {
    20. if (writer!=null) {
    21. try {
    22. writer.close();
    23. } catch (IOException e) {
    24. // TODO Auto-generated catch block
    25. e.printStackTrace();
    26. }
    27. }
    28. }