小萨
magicsa
全部博文(13)
2008年(13)
greenet
庸人自扰
zhangjie
haise198
bbsworks
分类: Java
2008-05-20 21:14:38
package forecast2008;import java.io.File;import java.io.FileOutputStream;public class MessageFile { private String fileName ; MessageFile(String fileName){ this.fileName = fileName ; } protected synchronized void write(String content)throws Exception { File file = new File("d:/"+fileName) ; System.out.println(file); if(file.exists()) throw new Exception("要创建的文件已经存在,请检查目录或文件名") ; //创建报文 if(!file.createNewFile()) throw new Exception("创建报文失败,可能文件已经存在,请检查路径") ; FileOutputStream out = new FileOutputStream(file,true) ; StringBuffer sb = new StringBuffer() ; sb.append(content) ; out.write(sb.toString().getBytes("US-ASCII")) ; out.flush() ; out.close() ; } public static void main(String[] args){ String content="adfjoiwenf;lvjiow;ejf;dsjfoiejwf你好" ; MessageFile mf = new MessageFile("a.txt") ; try { mf.write(content) ; } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } }}
上一篇:在虚拟机中使用USB设备
下一篇:swt为关闭窗口添加确认事件
登录 注册