Justin.Lu----Position
IT博客
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
4 随笔 :: 6 文章 :: 3 评论 :: 0 Trackbacks
<
2024年11月
>
日
一
二
三
四
五
六
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(3)
给我留言
查看公开留言
查看私人留言
随笔档案
2005年9月 (1)
2005年8月 (3)
文章分类
.Net(1)
(rss)
Java(3)
(rss)
Others(1)
(rss)
Windows(1)
(rss)
Java
Open Source
搜索
最新评论
1. re: Java File Copy
评论内容较长,点击标题查看
--RaquelCRAFT24
2. re: VB中根據app.path取得路徑
评论内容较长,点击标题查看
--jx
3. re: VB中根據app.path取得路徑
学vb
--清风化语
阅读排行榜
1. Java File Copy(2085)
2. VB中根據app.path取得路徑 (2067)
3. Java程序员的两个好网站 [转](317)
4. vb FileCreate(315)
评论排行榜
1. Java File Copy(6)
2. VB中根據app.path取得路徑 (2)
3. Java程序员的两个好网站 [转](0)
4. vb FileCreate(0)
Java File Copy
File Copy
//
Copies src file to dst file.
//
If the dst file does not exist, it is created
void
copy(File src, File dst) throws IOException
{
InputStream
in
=
new
FileInputStream(src);
OutputStream
out
=
new
FileOutputStream(dst);
//
Transfer bytes from in to out
byte
[] buf
=
new
byte
[
1024
];
int
len;
while
((len
=
in
.read(buf))
>
0
)
{
out
.write(buf,
0
, len);
}
in
.close();
out
.close();
}
posted on 2005-08-18 20:57
Justin
阅读(2085)
评论(6)
编辑
收藏
引用
评论
#
re: Java File Copy
2010-03-21 10:56
RaquelCRAFT24
If you want to buy real estate, you will have to get the <a href="
http://lowest-rate-loans.com/topics/credit-loans">credit
loans</a>. Furthermore, my sister always uses a short term loan, which supposes to be the most rapid.
回复
更多评论
刷新评论列表
只有注册用户
登录
后才能发表评论。
Powered by:
IT博客
Copyright © Justin