代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
使用文件通道
作者:
培政
/ 发布于
2015/4/14
/
502
package file; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.nio.ByteBuffer; import java.nio.channels.FileChannel; /** * 提供java IO 操作 * @author ronaldoGT * */ public class IOfile { /** * @param args */ private static IOfile ioFile = new IOfile(); private static String oldUrl = "E://FunshionMedia/黑客帝国/老梁观世界-20130311.mp4"; private static String newUrl = "E://老梁观世界-20130311.mp4"; public static void main(String[] args) { long star = System.nanoTime(); //ioFile.copyFile(new File(oldUrl),new File(newUrl));//601508919 //ioFile.copyDirectory(new File("D:/html5"),"E:/"); //ioFile.textFileChannel(new File(oldUrl),new File(newUrl));//1511679222 ioFile.textFileChannelReadWrite(new File(oldUrl),new File(newUrl));//1333882326 long end = System.nanoTime(); System.out.println(end-star); } /** * 文件通道 测试 * @param oldFile * @param newFile */ public void textFileChannel(File oldFile,File newFile){ FileChannel fis = null ; FileChannel fos = null ; try { fis = new FileInputStream(oldFile).getChannel(); fos = new FileOutputStream(newFile).getChannel(); fis.transferTo(0, fis.size(), fos); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); }finally{ try { fis.close(); fos.close(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } } /** * 测试文件通道 read,write方法 * @param oldFile * @param newFile */ public void textFileChannelReadWrite(File oldFile,File newFile){ FileChannel fis = null ; FileChannel fos = null ; try { fis = new FileInputStream(oldFile).getChannel(); fos = new FileOutputStream(newFile).getChannel(); ByteBuffer buf = ByteBuffer.allocate(1024*2); while(fis.read(buf) != -1){ buf.flip();//准备写入,防止其他读取,锁住文件 fos.write(buf); buf.clear();//准备读取。将缓冲区清理完毕,移动文件内部指针 } } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); }finally{ try { fis.close(); fos.close(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } } /** * 复制文件夹,嵌套文件夹,以及包含的文件 * @param oldDirectory * @param newUrl */ public void copyDirectory(File oldDirectory,String newUrl){ File[] f=oldDirectory.listFiles(); File file = new File(newUrl); String url; url = oldDirectory.getName(); newUrl += "/"+url; file = new File(newUrl); file.mkdir(); for(File ff:f){ if(ff.isDirectory()){ copyDirectory(ff,newUrl); } if(ff.isFile()){ copyFile(ff,new File(newUrl+"/"+ff.getName())); } } } /** * 复制文件 * @param oldFile * @param newFile */ public void copyFile(File oldFile,File newFile){ InputStream fis = null; OutputStream fos = null; try { fis = new BufferedInputStream(new FileInputStream(oldFile)); fos = new BufferedOutputStream(new FileOutputStream(newFile)); byte[] buf = new byte[1024*2]; int len ; while((len = fis.read(buf)) != -1){ fos.write(buf, 0, len); } fos.flush(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); }finally{ try { fis.close(); fos.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } }
试试其它关键字
使用文件通道
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
培政
贡献的其它代码
(
22
)
.
API监控Shell脚本
.
ue 文字滚动 |vue 文字轮播
.
判断当前是否为移动设备的浏览器
.
jquery添加删除html标签属性
.
图片的等比例缩放
.
制作时间戳和时间戳转标准日期时间
.
可以输入一个小数点,和可以使用退格(int类型和浮点类
.
比较两个字符串的相似度
.
jQuery实现表格展开与折叠的方法
.
UpdatePanel中FileUpload控件获取不到值的解决办法
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3