posts - 1, comments - 4, trackbacks - 0, articles - 0

java.io

Posted on 2006-06-20 13:15 JavaDoIt 阅读(481) 评论(4)  编辑  收藏
public static void Url() throws MalformedURLException{ File file = new File("b.txt"); URL url =null; url = file.toURL(); String dir =file.getPath(); System.out.print(file.getAbsolutePath()); file.renameTo(new File(dir,file.getName())); } public static void cope()throws IOException{ File file = new File("b.txt"); File file2 = new File("c.txt"); if(!file2.exists()){ file2.createNewFile(); } FileInputStream in = new FileInputStream(file); // InputStream in = url.openStream(); FileOutputStream out = new FileOutputStream(file2); byte[] buffer = new byte[4096]; int data; while((data = in.read(buffer))!=-1){ out.write(buffer,0,data); } in.close(); out.close(); } public static void read() throws IOException{ File file = new File("b.txt"); System.out.print("Overwrite existing file " + file.getName() +"? (Y/N): "); System.out.flush(); BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); String readtowrite = in.readLine(); BufferedWriter ot = new BufferedWriter(new FileWriter("b.txt")); ot.write(readtowrite); ot.close(); } public static void test() throws IOException{ File file = new File("b.txt"); if(!file.exists()){ file.createNewFile(); } File file2 = new File("c.txt"); if(!file2.exists()){ file2.createNewFile(); } FileInputStream in = new FileInputStream(file); // InputStream in = url.openStream(); FileOutputStream out = new FileOutputStream(file2); byte[] buffer = new byte[4096]; int data; while((data = in.read(buffer))!=-1){ out.write(buffer,0,data); } in.close(); out.close(); } public static void compress() throws IOException{ File file = new File("b.txt"); FileInputStream in = new FileInputStream(file); String to =file.getName()+".zip"; GZIPOutputStream out = new GZIPOutputStream(new FileOutputStream("e:/"+to)); byte[] buffer = new byte[4096]; int data; while((data = in.read(buffer))!=-1){ out.write(buffer,0,data); } in.close(); out.close(); }

Feedback

# re: java.io  回复  更多评论   

2006-06-20 14:42 by aa
你写这要哪个看?

# re: java.io  回复  更多评论   

2006-06-20 14:50 by 路漫漫其修远兮,吾将上下而求索
垃圾拿出来丢人现眼

# re: java.io  回复  更多评论   

2006-06-20 14:50 by ChuPaChuPs
混乱程序大赛么。。。这个还未够班口牙。。。

# re: java.io  回复  更多评论   

2006-06-20 15:20 by dudu
你的帐户被限制!

只有注册用户登录后才能发表评论。


网站导航: