当前位置:   article > 正文

android 多线程创建文件_android多线程写文件

android多线程写文件

    最近做一个项目,需要多线程去创建文件。

    用到RandomAccessFile

    RandomAccessFile是Java输入/输出流体系中功能最丰富的文件内容访问类,既可以读取文件内容,也可以向文件输出数据。与普通的输入/输出流不同的是,RandomAccessFile支持跳到文件任意位置读写数据,RandomAccessFile对象包含一个记录指针,用以标识当前读写处的位置,当程序创建一个新的RandomAccessFile对象时,该对象的文件记录指针对于文件头(也就是0处),当读写n个字节后,文件记录指针将会向后移动n个字节。除此之外,RandomAccessFile可以自由移动该记录指针

    RandomAccessFile包含两个方法来操作文件记录指针:

  • long getFilePointer():返回文件记录指针的当前位置
  • void seek(long pos):将文件记录指针定位到pos位置

    RandomAccessFile类在创建对象时,除了指定文件本身,还需要指定一个mode参数,该参数指定RandomAccessFile的访问模式,该参数有如下四个值:

  • r:以只读方式打开指定文件。如果试图对该RandomAccessFile指定的文件执行写入方法则会抛出IOException
  • rw:以读取、写入方式打开指定文件。如果该文件不存在,则尝试创建文件
  • rws:以读取、写入方式打开指定文件。相对于rw模式,还要求对文件的内容或元数据的每个更新都同步写入到底层存储设备,默认情形下(rw模式下),是使用buffer的,只有cache满的或者使用RandomAccessFile.close()关闭流的时候儿才真正的写到文件
  • rwd:与rws类似,只是仅对文件的内容同步更新到磁盘,而不修改文件的元数据

以上我觉得比较重要,需要知道,不多说,上代码

  1. import android.os.Bundle;
  2. import android.os.Environment;
  3. import android.support.v7.app.AppCompatActivity;
  4. import android.util.Log;
  5. import android.view.View;
  6. import android.widget.Button;
  7. import java.io.File;
  8. public class CreateFile extends AppCompatActivity implements View.OnClickListener {
  9. private static final String TAG = CreateFile.class.getSimpleName();
  10. @Override
  11. protected void onCreate(Bundle saveInstanceState) {
  12. super.onCreate(saveInstanceState);
  13. setContentView(R.layout.create_file);
  14. Button startButton = findViewById(R.id.create_file_button);
  15. startButton.setOnClickListener(this);
  16. }
  17. @Override
  18. public void onClick(View v) {
  19. int threadNum = 8;
  20. int fileSize = 1024 * 1024;
  21. createFile(threadNum, fileSize);
  22. }
  23. private void createFile(int threadID, int fileSize) {
  24. String folderPath = Environment.getExternalStorageDirectory().getPath() + File.separator + "demoTest" + File.separator;
  25. Log.d(TAG, "create file path : " + folderPath);
  26. File file = new File(folderPath);
  27. if (!file.exists() && !file.isDirectory()) {
  28. file.mkdirs();
  29. }
  30. //创建大小是1G的文件
  31. MoreThreadCreateFile moreThreadCreateFile = new MoreThreadCreateFile(folderPath + "aa.txt", fileSize, threadID);
  32. moreThreadCreateFile.start();
  33. }
  34. class MoreThreadCreateFile extends Thread {
  35. private String mFilePath;
  36. private int mFileSize;
  37. private int mThreadNum;
  38. MoreThreadCreateFile(String filePath, int fileSize, int threadNum) {
  39. mFilePath = filePath;
  40. mFileSize = fileSize;
  41. mThreadNum = threadNum;
  42. }
  43. @Override
  44. public void run() {
  45. //todo
  46. FileCreateThread[] threads = new FileCreateThread[mThreadNum];
  47. try {
  48. int blockSize = (mFileSize % mThreadNum) == 0 ? mFileSize / mThreadNum : mFileSize / mThreadNum + 1;
  49. File file = new File(mFilePath);
  50. for (int i = 0; i < threads.length; i++) {
  51. threads[i] = new FileCreateThread(file, blockSize, i + 1);
  52. threads[i].setName("Thread:" + i);
  53. threads[i].start();
  54. }
  55. Log.d(TAG, "file create is complete!!");
  56. } catch (Exception e) {
  57. e.printStackTrace();
  58. }
  59. }
  60. }
  61. }
  1. import android.util.Log;
  2. import java.io.File;
  3. import java.io.IOException;
  4. import java.io.RandomAccessFile;
  5. class FileCreateThread extends Thread {
  6. private static final String TAG = FileCreateThread.class.getSimpleName();
  7. //线程创建的长度
  8. private int mFileLenth;
  9. //文件路径
  10. private File mFile;
  11. //线程ID
  12. private int mThreadId;
  13. //线程下载的长度
  14. private int mBlockSize;
  15. public FileCreateThread(File file, int blockSize, int threadId) {
  16. mFile = file;
  17. mBlockSize = blockSize;
  18. mThreadId = threadId;
  19. }
  20. @Override
  21. public void run() {
  22. RandomAccessFile raf = null;
  23. try {
  24. int startPos = mBlockSize * (mThreadId - 1);//开始位置
  25. int endPos = mBlockSize * mThreadId - 1; //结束位置
  26. //文件的长度
  27. mFileLenth = endPos - startPos;
  28. Log.d(TAG, "mFileLenth =" + mFileLenth);
  29. raf = new RandomAccessFile(mFile, "rwd");
  30. raf.seek(startPos);
  31. int len = 0;
  32. while (len < mFileLenth / 128 + 1) {
  33. raf.write(buffer1K());
  34. len++;
  35. }
  36. isCompleted = true;
  37. } catch (Exception e) {
  38. e.printStackTrace();
  39. } finally {
  40. if (raf != null) {
  41. try {
  42. raf.close();
  43. } catch (IOException e) {
  44. e.printStackTrace();
  45. }
  46. }
  47. }
  48. }
  49. private byte[] buffer1K() {
  50. byte[] by = new byte[128];
  51. for (int item = 0; item < by.length; item++) {
  52. by[item++] = 0x5;
  53. by[item] = 0xA;
  54. }
  55. return by;
  56. }
  57. }

参考博客:

https://www.cnblogs.com/baoliyan/p/6225842.html

https://www.cnblogs.com/lr393993507/p/4750467.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/228150
推荐阅读
相关标签
  

闽ICP备14008679号