1、使用FileWriter

		String str="hello world!";
        FileWriter writer;
        try {
            writer = new FileWriter("E:/token.txt");
            write.write("");//清空原文件内容
            writer.write(str);
            writer.flush();
            writer.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

2、使用FileWriter,追加写入文件

		String str="hello world!";
        FileWriter writer;
        try {
            writer = new FileWriter("E:/token.txt", true);
            writer.write(str);
            writer.flush();
            writer.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

3、使用FileOutPutStream

			File txt=new File("E:/log1.txt");
             if(!txt.exists()){  
                 txt.createNewFile();  
            }  
             byte bytes[]=new byte[512];   
             bytes=str.getBytes();  
             int b=bytes.length;   //是字节的长度,不是字符串的长度
             FileOutputStream fos=new FileOutputStream(txt); 
             fos.write(bytes,0,b); 
             fos.write(bytes);
             fos.close();

4、使用FileOutPutStream追加写入文件

			File txt=new File("E:/log1.txt", true);
			//true表示在文件末尾追加  
             if(!txt.exists()){  
                 txt.createNewFile();  
            }  
             byte bytes[]=new byte[512];   
             bytes=str.getBytes();  
             int b=bytes.length;   //是字节的长度,不是字符串的长度
             FileOutputStream fos=new FileOutputStream(txt); 
             fos.write(bytes,0,b); 
             fos.write(bytes);
             fos.close();
Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐