总结:

package com.aini;

import java.io.*;

public class gf {
	public static String main(String[] args) throws IOException {
		BufferedWriter out = null;// H

		try {
			// out=new BufferedWriter(out);//cuo le
			out = new BufferedWriter(new FileWriter("filename", true));
			out.write("MISS LANG a wo");//

		} catch (Exception e) {
			e.printStackTrace();

		} finally {
			if (out != null)
				out.close();
		}
		return out.toString();
	}

}

  

相关文章:

  • 2021-07-05
  • 2021-12-03
  • 2021-11-11
  • 2022-01-02
  • 2022-01-07
  • 2021-12-30
  • 2021-09-02
猜你喜欢
  • 2022-12-23
  • 2021-07-06
  • 2022-12-23
  • 2021-11-13
  • 2021-12-05
  • 2021-09-30
  • 2022-12-23
相关资源
相似解决方案