이 글에서는 Java 문자열을 파일에 쓰는 세 가지 방법 구현에 대한 관련 정보를 주로 소개합니다. 필요한 친구는
Java 문자열을 파일에 쓰는 세 가지 방법 구현1을 참조하세요. File
String str="hello world!"; FileWriter writer; try { writer = new FileWriter("E:/token.txt"); writer.write(str); writer.flush(); writer.close(); } catch (IOException e) { e.printStackTrace(); }
2. 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();
3을 사용하여 파일을 작성하세요.
FileOutputStream fos = new FileOutputStream("E:/log.txt",true); //true表示在文件末尾追加 fos.write(log.getBytes()); fos.close();
위 내용은 파일에 Java 문자열을 쓰는 세 가지 예 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!