java.util.Io包下可以实现,你说的这个是属于IO操作,这个很简单,不难的!
String hello="hello world";byte[] buff=new byte[]{};buff=hello.getBytes();FileOutputStream output=new FileOutputStream("data.txt");output.write(buff,0,buff.length);