首页 > 其他分享 >Android NIO学习之文件拷贝

Android NIO学习之文件拷贝

时间:2023-07-31 22:34:19浏览次数:43  
标签:f1 f2 NIO new Android inC out 拷贝 size

public static long forChannel(File f1, File f2) throws Exception {
   long time = new Date().getTime();
   int size = 2*1024; FileInputStream in = new FileInputStream(f1);
   FileOutputStream out = new FileOutputStream(f2); FileChannel inC = in.getChannel();
   FileChannel outC = out.getChannel(); ByteBuffer buffer = null;
   int count = size;
   while (inC.position() != inC.size()) {
    if ((inC.size() - inC.position()) < size) {
     count = (int) (inC.size() - inC.position());
    }
    buffer = ByteBuffer.allocateDirect(count);
    
    inC.read(buffer);
    
    buffer.flip();
    
    outC.write(buffer);
    
    outC.force(false);
   }
   inC.close();
   outC.close();
   
   in.close();
   out.flush();
   out.close();
   return new Date().getTime() - time;
  }
  
  public static long forChannelOne(File f1, File f2) throws IOException {
   long time = new Date().getTime();
   int size = 2 * 1024;// 2097152;
   FileInputStream in = new FileInputStream(f1);
   FileOutputStream out = new FileOutputStream(f2); FileChannel fcin = in.getChannel();
   FileChannel fcout = out.getChannel(); ByteBuffer buffer = ByteBuffer.allocate(size); // 分配2KB作为缓冲区
 while (true) {
    buffer.clear(); // 每次使用必须置空缓冲区  int r = fcin.read(buffer);
  if (r == -1) {
     break;
    }  buffer.flip(); // 写入前使用flip这个方法
  fcout.write(buffer);
   } fcin.close();
   fcout.close(); in.close();
   out.flush();
   out.close();
   return new Date().getTime() - time;
  }  public static long forJava(File f1, File f2) throws Exception {
   long time = new Date().getTime();
   int size = 2 * 1024;// 2097152;
   FileInputStream in = new FileInputStream(f1);
   FileOutputStream out = new FileOutputStream(f2); byte[] buffer = new byte[size];
   int ins;
   while ((ins = in.read(buffer)) != -1) {
    out.write(buffer, 0, ins);
   } in.close();
   out.flush();
   out.close();
   return new Date().getTime() - time;
  }  public static long forTransfer(File f1, File f2) throws Exception {
   long time = new Date().getTime();
   int size = 2 * 1024;// 2k == 2097152;
   FileInputStream in = new FileInputStream(f1);
   FileOutputStream out = new FileOutputStream(f2); FileChannel inC = in.getChannel();
   FileChannel outC = out.getChannel(); int count = size;
   while (inC.position() != inC.size()) {
    if ((inC.size() - inC.position()) < size) {
     count = (int) (inC.size() - inC.position());
    }
    inC.transferTo(inC.position(), count, outC);
    inC.position(inC.position() + count);
   }
   inC.close();
   outC.close();
   return new Date().getTime() - time;
  }public void test(){
   String infile = "/sdcard/testUTF.txt"; //8k
   String outfile = "/sdcard/testUTF8.txt";
   File f1 = new File(infile);
   File f2 = new File(outfile);
   try {
 //   Log.v("TAG", "" + Student.forJava(f1, f2));//31
 //   Log.v("TAG", "" + Student.forTransfer(f1, f2));//28
    Log.v("TAG", "" + Student.forChannelOne(f1, f2));//22
 //   Log.v("TAG", "" + Student.forChannel(f1, f2));//15
   } catch (Exception e) {
    e.printStackTrace();
   }

标签:f1,f2,NIO,new,Android,inC,out,拷贝,size
From: https://blog.51cto.com/u_3124497/6914160

相关文章

  • android 游戏开发 之索引贴
    1、Android游戏开发之旅(一)长按Button原理2、Android游戏开发之旅(二)View和SurfaceView3、Android游戏开发之旅(三)View类详解4、Android游戏开发之旅(四)Canvas和Paint实例5、Android游戏开发之旅(五)Path和Typeface6、Android游戏开发之旅(六)自定义View7、Android游戏开发之旅(七)......
  • Android上基于JSON的数据交互应用
    JSON的定义:一种轻量级的数据交换格式,具有良好的可读和便于快速编写的特性。业内主流技术为其提供了完整的解决方案(有点类似于正则表达式,获得了当今大部分语言的支持),从而可以在不同平台间进行数据交换。JSON采用兼容性很高的文本格式,同时也具备类似于C语言体系的行为。–Json.org......
  • 自定义Android菜单背景
    publicclassMenuExextendsActivity{privatestaticfinalStringTAG="android123";@OverridepublicvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContentView(R.layout......
  • android网络通讯数据封装之 json
    Demo程序包括客户端和服务端客户端按json数据格式封装数据传至服务端。服务端为简单的servlet程序,负责接收客户端传到json数据,然后按原数据返回客户端.实例代码如下:publicstaticStringcmdLogIn(){StringurlString="http://192.168.8.75:89/webroot/jsontest";HttpPo......
  • android 检查手机是否安装该程序
    publicbooleancheckPrograme(StringpackName,StringactvityName){booleanflag=false;PackageManagermanager=getPackageManager();//只查找启动方式为LAUNCHER并且是ACTION_MAIN的APPIntentmainIntent=newIntent(Intent.ACTION_MA......
  • android 应用程序数据共享ContentR…
    1.实现一个ContentProvider.publicclassDataProvidersextendsContentProvider{privatestaticfinalStringDATABASE_NAME="UIDB";privatestaticfinalintDATABASE_VERSION=1;privatestaticfinalStringTABLE_NAME="UITable";......
  • Android 使用【AIDL】调用外部服务
    在Android中有一种服务说是服务其实倒不如说是一个接口,这个接口名为:AndroidInterfaceDefinitionLanguage,这个接口可提供跨进程访问服务,英文缩写为:AIDL。此种服务的好处在于,多个应用程序之间建立共同的服务机制,通过AIDL在不同应用程序之间达到数据的共享和数据相互操作,下......
  • android学习之 如何在当前的Activi…
    当打开多个Activity(之前的没关闭)时,如何在当前的Activity退出程序呢?我们都知道最简单的是finish(),但这只是关闭当前的Activity,并不是退出整个程序。有人说用System.exit(1),我自己也试过用Process.killProcess(Process.myPid())。但都不理想,有时work,有时不起作用只是关闭当前的Acti......
  • android 自定义权限问题
    读懂Android(1):使用Android内部的DownloadProvider下载文件,并获取cache权限  --未审核  收藏Android内部提供了一个DownloadProvider,是一个非常完整的下载工具,提供了很好的外部接口可以被其他应用程序调用,来完成下载工作。同时也提供和很好的下载、通知、存储等机......
  • Android开发精华教程
    [下载]GoogleAndroid开发精华教程Android是Google于2007年11月5日宣布的基于Linux平台的开源手机操作系统的名称,该平台由操作系统、中间件、用户界面和应用软件组成,号称是首个为移动终端打造的真正开放和完整的移动软件。本文汇总整理了时下关于GoogleAndroid技术教程的下载......