当前位置:   article > 正文

Android--在手机SD卡上新建一个自定义文件夹并在新建文件夹目录下新建一个文件_android12 新建文件夹

android12 新建文件夹

唉,我虽然只是一枚Android菜鸡,但是做人得对得起吃瓜群众不是,不能老是喜欢吃人家的“果”,而自己却不“种树”不是。所以呢这是我第一次写博客,不知道该怎么写才能让读者看起来比较舒心,如果写的不好,还请大家不要介意=.=,如果大家有什么好的建议的话,可以直接私聊我。哈哈~废话不多说了。

一、直接上效果图:
1、创建前:
创建文件夹和文件之前的目录
2、创建后:
创建文件夹和文件之后的目录

二、代码部分
1、MainActivity.java

package com.example.createfile;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;

public class MainActivity extends Activity {
    /** Called when the activity is first created. */
    CreateFile createFile;
    Context mContext;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mContext=MainActivity.this;
        setContentView(R.layout.main);
        createFile=new CreateFile();
        createFile.Createfile(mContext);
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

2、CreateFile.java

package com.example.createfile;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

import android.content.Context;
import android.widget.Toast;


public class CreateFile {

    public void Createfile(Context mContext){
    String fileName="SdcardFile-"+System.currentTimeMillis()+".txt";
    String filePath="/sdcard/AndroidTest/";
    File file=new File(filePath);{//为什么这里要加个大括弧?不然就报错?

    if(!file.exists()){
        file.mkdirs();
    }
    if(file.exists()&&file.canWrite()){
        File newFile = new File(file.getAbsolutePath()+"/"+fileName);
        FileOutputStream fos = null;
        try{
            newFile.createNewFile();
            if(newFile.exists()&&newFile.canWrite()){
                fos = new FileOutputStream(newFile);
                String str="123456789";
                fos.write(str.getBytes());
                Toast.makeText(mContext, "写入成功!", Toast.LENGTH_SHORT).show();

            }
        }catch(IOException e){
            e.printStackTrace();
            Toast.makeText(mContext, "写入失败!", Toast.LENGTH_SHORT).show();
        }finally{
            if(fos!=null){
                try{
                    fos.flush();
                    fos.close();
                }catch(Exception e){
                    e.printStackTrace();
                }
            }
        }
    }
    }
    }
}

当然啦,因为我们需要用到sdcard的读写操作,所以需要在AndroidManifest.xml中添加权限:
<!-- 在SDCard中创建与删除文件权限 -->
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
<!-- 往SDCard写入数据权限 -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

好了,到这里代码就结束了。
  • 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
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/228444
推荐阅读
相关标签
  

闽ICP备14008679号