Android所有版本的存储权限适配

             第一步:在Manifest文件添加如下权限
         <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28" tools:ignore="ScopedStorage"/>
             <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
         <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

         android:requestLegacyExternalStorage="true"
         第二步:定义以下常量
         private static final int REQUEST_CODE_FOR_READ_MEDIA_IMAGES_PERMISSION_FROM_ANDROID_13 = 0x00000003;
             private static final int REQUEST_CODE_FOR_WRITE_EXTERNAL_STORAGE_PERMISSION_FROM_ANDROID_10_TO_ANDROID_12 = 0x00000005;
             private static final int REQUEST_CODE_FOR_WRITE_EXTERNAL_STORAGE_PERMISSION_FOR_ANDROID_6_TO_ANDROID_9 = 0x00000006;
         第三步:在需要写入文件的地方编写以下代码
            java.io.OutputStream outputStream = null;
            java.lang.String errorMessage = "";
            java.lang.String fileName = "test_导出资料_" + java.lang.System.currentTimeMillis() + ".xls";
            if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) {
                android.util.Log.d("debug", "设备系统的版本号是大于等于安卓6.0以上的版本,需要检查运行时的危险权限");
                if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.Q) {
                    android.util.Log.d("debug", "设备系统的版本号是大于等于安卓10.0以上的版本,说明是只能用媒介存储写入文件和读取文件");
                    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.TIRAMISU) {
                        android.util.Log.d("debug", "设备系统的版本号是大于等于安卓13.0以上的版本,换成检查Media声音和Media视频和Media图片的权限");
                        int checkSelfPermissionResultForReadMediaImages = checkSelfPermission(android.Manifest.permission.READ_MEDIA_IMAGES);
                        android.util.Log.d("debug", "checkSelfPermissionResultForReadMediaImages->" + checkSelfPermissionResultForReadMediaImages);
                        if (checkSelfPermissionResultForReadMediaImages == android.content.pm.PackageManager.PERMISSION_GRANTED) {
                            android.util.Log.d("debug", "已经授予媒介图片的读取权限");
                            android.net.Uri uri = android.provider.MediaStore.Files.getContentUri("external");
                            android.content.ContentValues contentValues = new android.content.ContentValues();
                            contentValues.put(android.provider.MediaStore.MediaColumns.DISPLAY_NAME, fileName);
                            contentValues.put(android.provider.MediaStore.MediaColumns.MIME_TYPE, "application/x-xls");
                            android.content.ContentResolver contentResolver = getContentResolver();
                            android.net.Uri uriForInsertResult = contentResolver.insert(uri, contentValues);
                            try {
                                outputStream = contentResolver.openOutputStream(uriForInsertResult);
                            } catch (java.io.IOException ioException) {
                                ioException.printStackTrace();
                                errorMessage = ioException.getMessage();
                            }
                        } else {
                            errorMessage = "需要授予权限";
                            android.util.Log.d("debug", "没有授予媒介图片的读取权限");
                            android.util.Log.d("debug", "现在执行请求读取媒介图片的权限");
                            java.lang.String[] permission = new java.lang.String[1];
                            permission[0] = android.Manifest.permission.READ_MEDIA_IMAGES;
                            requestPermissions(permission, REQUEST_CODE_FOR_READ_MEDIA_IMAGES_PERMISSION_FROM_ANDROID_13);
                        }
                        int checkSelfPermissionResultForReadExternalStorage = checkSelfPermission(android.Manifest.permission.READ_EXTERNAL_STORAGE);
                        int checkSelfPermissionResultForWriteExternalStorage = checkSelfPermission(android.Manifest.permission.WRITE_EXTERNAL_STORAGE);
                        android.util.Log.d("debug", "检测完读取媒介图片权限之后再检测外部存储读取权限看看->" + checkSelfPermissionResultForReadExternalStorage);
                        android.util.Log.d("debug", "检测完读取媒介图片权限之后再检测外部存储写入权限看看->" + checkSelfPermissionResultForWriteExternalStorage);
                    } else {
                        android.util.Log.d("debug", "设备系统的版本号时介于10.0到12.0之间的,通过android.provider.MediaStore获取外部存储目录");
                        if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.R) {
                            android.util.Log.d("debug", "安卓11或者安卓12通过Environment的isExternalStorageManager方法检查是否有权限");
                            if (android.os.Environment.isExternalStorageManager()) {
                                android.util.Log.d("debug", "在安卓11或者安卓12中有读写文件的权限");
                                android.net.Uri uri = android.provider.MediaStore.Files.getContentUri("external");
                                android.content.ContentValues contentValues = new android.content.ContentValues();
                                contentValues.put(android.provider.MediaStore.MediaColumns.DISPLAY_NAME, fileName);
                                contentValues.put(android.provider.MediaStore.MediaColumns.MIME_TYPE, "application/x-xls");
                                android.content.ContentResolver contentResolver = getContentResolver();
                                android.net.Uri uriForInsertResult = contentResolver.insert(uri, contentValues);
                                try {
                                    outputStream = contentResolver.openOutputStream(uriForInsertResult);
                                } catch (java.io.IOException ioException) {
                                    ioException.printStackTrace();
                                    errorMessage = ioException.getMessage();
                                }
                            } else {
                                errorMessage = "需要授予权限";
                                android.util.Log.d("debug", "安卓11或者安卓12的逻辑请求权限");
                                try {
                                    Intent intent = new Intent(android.provider.Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION);
                                    intent.addCategory("android.intent.category.DEFAULT");
                                    intent.setData(android.net.Uri.parse(String.format("package:%s",getApplicationContext().getPackageName())));
                                    startActivityForResult(intent, REQUEST_CODE_FOR_WRITE_EXTERNAL_STORAGE_PERMISSION_FROM_ANDROID_10_TO_ANDROID_12);
                                } catch (Exception e) {
                                    e.printStackTrace();
                                    Intent intent = new Intent();
                                    intent.setAction(android.provider.Settings.ACTION_MANAGE_ALL_FILES_ACCESS_PERMISSION);
                                    startActivityForResult(intent, REQUEST_CODE_FOR_WRITE_EXTERNAL_STORAGE_PERMISSION_FROM_ANDROID_10_TO_ANDROID_12);
                                }
                            }
                        } else {
                            android.util.Log.d("debug", "在安卓10版本中沿用之前的检查方法");
                            int checkSelfPermissionResultForReadExternalStorage = androidx.core.app.ActivityCompat.checkSelfPermission(this, android.Manifest.permission.READ_EXTERNAL_STORAGE);
                            //int checkSelfPermissionResultForWriteExternalStorage = androidx.core.app.ActivityCompat.checkSelfPermission(this, android.Manifest.permission.WRITE_EXTERNAL_STORAGE);
                            android.util.Log.d("debug", "checkSelfPermissionResultForReadExternalStorage->" + checkSelfPermissionResultForReadExternalStorage);
                            //android.util.Log.d("debug", "checkSelfPermissionResultForWriteExternalStorage->" + checkSelfPermissionResultForWriteExternalStorage);
                            //boolean isHavePermission = checkSelfPermissionResultForReadExternalStorage == android.content.pm.PackageManager.PERMISSION_GRANTED && checkSelfPermissionResultForWriteExternalStorage == android.content.pm.PackageManager.PERMISSION_GRANTED;
                            if (checkSelfPermissionResultForReadExternalStorage == android.content.pm.PackageManager.PERMISSION_GRANTED) {
                                android.util.Log.d("debug", "已经授予外部存储写入权限");
                                android.net.Uri uri = android.provider.MediaStore.Files.getContentUri("external");
                                android.content.ContentValues contentValues = new android.content.ContentValues();
                                contentValues.put(android.provider.MediaStore.MediaColumns.DISPLAY_NAME, fileName);
                                contentValues.put(android.provider.MediaStore.MediaColumns.MIME_TYPE, "application/x-xls");
                                android.content.ContentResolver contentResolver = getContentResolver();
                                android.net.Uri uriForInsertResult = contentResolver.insert(uri, contentValues);
                                try {
                                    outputStream = contentResolver.openOutputStream(uriForInsertResult);
                                } catch (java.io.IOException ioException) {
                                    ioException.printStackTrace();
                                    errorMessage = ioException.getMessage();
                                }
                            } else {
                                errorMessage = "需要授予权限";
                                android.util.Log.d("debug", "没有授予外部存储写入权限");
                                android.util.Log.d("debug", "现在执行请求外部存储写入的权限");
                                android.util.Log.d("debug", "安卓10的逻辑请求权限");
                                java.lang.String[] permission = new java.lang.String[2];
                                permission[0] = android.Manifest.permission.READ_EXTERNAL_STORAGE;
                                permission[1] = android.Manifest.permission.WRITE_EXTERNAL_STORAGE;
                                requestPermissions(permission, REQUEST_CODE_FOR_WRITE_EXTERNAL_STORAGE_PERMISSION_FROM_ANDROID_10_TO_ANDROID_12);
                            }
                        }
                    }
                } else {
                    android.util.Log.d("debug", "设备系统的版本号是介于6.0到9.0之间,仍然是可以从Environment类的getExternalStorageDirectory方法获取外部存储目录的,但是前提是要检查运行时权限");
                    int checkSelfPermissionResultForWriteExternalStorage = checkSelfPermission(android.Manifest.permission.WRITE_EXTERNAL_STORAGE);
                    if (checkSelfPermissionResultForWriteExternalStorage == android.content.pm.PackageManager.PERMISSION_GRANTED) {
                        java.io.File externalStorageDirectory = android.os.Environment.getExternalStorageDirectory();
                        android.util.Log.d("debug", "安卓系统是在6.0到9.0之间的,通过Environment类获取到外部存储目录->" + externalStorageDirectory.getPath());
                        try {
                            outputStream = new java.io.FileOutputStream(externalStorageDirectory.getPath() + java.io.File.separator + fileName);
                        } catch (java.io.IOException ioException) {
                            ioException.printStackTrace();
                            errorMessage = ioException.getMessage();
                        }
                    } else {
                        errorMessage = "需要授予权限";
                        java.lang.String[] permission = new java.lang.String[1];
                        permission[0] = android.Manifest.permission.WRITE_EXTERNAL_STORAGE;
                        requestPermissions(permission, REQUEST_CODE_FOR_WRITE_EXTERNAL_STORAGE_PERMISSION_FOR_ANDROID_6_TO_ANDROID_9);
                    }
                }
            } else {
                android.util.Log.d("debug", "设备系统的版本号小于6.0以下的版本,不需要检查运行时权限");
                java.io.File externalStorageDirectory = android.os.Environment.getExternalStorageDirectory();
                android.util.Log.d("debug", "直接通过Environment类的getExternalStorageDirectory()即可获取外部存储目录->" + externalStorageDirectory.getPath());
                try {
                    outputStream = new java.io.FileOutputStream(externalStorageDirectory.getPath() + java.io.File.separator + fileName);
                } catch (java.io.IOException ioException) {
                    ioException.printStackTrace();
                    errorMessage = ioException.getMessage();
                }
            }
            if (outputStream != null) {
                //file write
            } else {
                android.widget.Toast.makeText(this, errorMessage, android.widget.Toast.LENGTH_LONG).show();
            }


        第四步:权限请求回调函数
        @Override
    public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
        super.onRequestPermissionsResult(requestCode, permissions, grantResults);
        if (requestCode == REQUEST_CODE_FOR_READ_MEDIA_IMAGES_PERMISSION_FROM_ANDROID_13) {
            if (grantResults.length > 0 && grantResults[0] == android.content.pm.PackageManager.PERMISSION_GRANTED) {
                if (permissions.length > 0) {
                    android.util.Log.d("debug", "打印授予的权限->" + permissions[0]);
                }
                java.lang.String fileName = "buyup_导出资料_" + java.lang.System.currentTimeMillis() + ".xls";
                java.lang.String errorMessage = "";
                java.io.OutputStream outputStream = null;
                android.util.Log.d("debug", "设备系统的版本号是大于等于安卓10.0以上的版本,说明是只能用媒介存储写入文件和读取文件");
                android.net.Uri uri = android.provider.MediaStore.Files.getContentUri("external");
                android.content.ContentValues contentValues = new android.content.ContentValues();
                contentValues.put(android.provider.MediaStore.MediaColumns.DISPLAY_NAME, fileName);
                contentValues.put(android.provider.MediaStore.MediaColumns.MIME_TYPE, "application/x-xls");
                android.content.ContentResolver contentResolver = getContentResolver();
                android.net.Uri uriForInsertResult = contentResolver.insert(uri, contentValues);
                try {
                    outputStream = contentResolver.openOutputStream(uriForInsertResult);
                } catch (java.io.IOException ioException) {
                    ioException.printStackTrace();
                    errorMessage = ioException.getMessage();
                }
                if (outputStream != null) {
                    //file write
                } else {
                    android.widget.Toast.makeText(this, errorMessage, android.widget.Toast.LENGTH_LONG).show();
                }
            } else {
                if (permissions.length > 0) {
                    java.lang.String permission0 = permissions[0];
                    android.util.Log.d("debug", "打印请求的权限->" + permission0);
                }
                android.util.Log.d("debug", "权限授予失败");
                android.widget.Toast.makeText(this, "权限授予失败", android.widget.Toast.LENGTH_LONG).show();
            }
        } else if (requestCode == REQUEST_CODE_FOR_WRITE_EXTERNAL_STORAGE_PERMISSION_FOR_ANDROID_6_TO_ANDROID_9) {
            if (grantResults.length > 0 && grantResults[0] == android.content.pm.PackageManager.PERMISSION_GRANTED) {
                if (permissions.length > 0) {
                    android.util.Log.d("debug", "来自安卓6.0到安卓9.9之间的请求权限,打印授予的权限->" + permissions[0]);
                }
                java.lang.String fileName = "buyup_导出资料_" + java.lang.System.currentTimeMillis() + ".xls";
                java.lang.String errorMessage = "";
                java.io.OutputStream outputStream = null;
                android.util.Log.d("debug", "设备系统的版本号是大于等于安卓6.0到安卓9.0之间的,通过用android.os.Environment类获取外部存储");
                java.io.File externalStorageDirectory = android.os.Environment.getExternalStorageDirectory();
                try {
                    outputStream = new java.io.FileOutputStream(externalStorageDirectory.getPath() + java.io.File.separator + fileName);
                } catch (java.io.IOException ioException) {
                    ioException.printStackTrace();
                    errorMessage = ioException.getMessage();
                }
                if (outputStream != null) {
                    //file write
                } else {
                    android.widget.Toast.makeText(this, errorMessage, android.widget.Toast.LENGTH_LONG).show();
                }
            } else {
                if (permissions.length > 0) {
                    android.util.Log.d("debug", "来自安卓6.0到安卓9.9之间的请求权限,打印拒绝的权限->" + permissions[0]);
                }
                android.util.Log.d("debug", "来自安卓6.0到安卓9.9之间的请求权限,权限授予失败");
                android.widget.Toast.makeText(this, "权限授予失败", android.widget.Toast.LENGTH_LONG).show();
            }
        } else if (requestCode == REQUEST_CODE_FOR_WRITE_EXTERNAL_STORAGE_PERMISSION_FROM_ANDROID_10_TO_ANDROID_12) {
            if (grantResults.length > 0 && grantResults[0] == android.content.pm.PackageManager.PERMISSION_GRANTED) {
                if (permissions.length > 0) {
                    android.util.Log.d("debug", "来自安卓10.0的版本,打印授予的权限->" + permissions[0]);
                    android.util.Log.d("debug", "来自安卓10.0的版本,打印授予的权限->" + permissions[1]);
                }
                java.lang.String fileName = "buyup_导出资料_" + java.lang.System.currentTimeMillis() + ".xls";
                java.lang.String errorMessage = "";
                java.io.OutputStream outputStream = null;
                android.net.Uri uri = android.provider.MediaStore.Files.getContentUri("external");
                android.content.ContentValues contentValues = new android.content.ContentValues();
                contentValues.put(android.provider.MediaStore.MediaColumns.DISPLAY_NAME, fileName);
                contentValues.put(android.provider.MediaStore.MediaColumns.MIME_TYPE, "application/x-xls");
                android.content.ContentResolver contentResolver = getContentResolver();
                android.net.Uri uriForInsertResult = contentResolver.insert(uri, contentValues);
                try {
                    outputStream = contentResolver.openOutputStream(uriForInsertResult);
                } catch (java.io.IOException ioException) {
                    ioException.printStackTrace();
                    errorMessage = ioException.getMessage();
                }
                if (outputStream != null) {
                    //file write
                } else {
                    android.widget.Toast.makeText(this, errorMessage, android.widget.Toast.LENGTH_LONG).show();
                }
            } else {
                if (permissions.length > 0) {
                    android.util.Log.d("debug", "来自安卓10.0的版本,打印拒绝的权限->" + permissions[0]);
                    android.util.Log.d("debug", "来自安卓10.0的版本,打印拒绝的权限->" + permissions[1]);
                }
                android.widget.Toast.makeText(this, "权限授予失败", android.widget.Toast.LENGTH_LONG).show();
            }
        }
    }


    第五步:针对安卓11或者安卓12版本的请求权限方法
    @Override
    protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == REQUEST_CODE_FOR_WRITE_EXTERNAL_STORAGE_PERMISSION_FROM_ANDROID_10_TO_ANDROID_12) {
            android.util.Log.d("debug", "在安卓11或者安卓12系统中引导到系统设置界面开启权限回来");
            if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.R) {
                if (android.os.Environment.isExternalStorageManager()) {
                    android.util.Log.d("debug", "已经授予外部存储写入权限");
                    java.io.OutputStream outputStream = null;
                    java.lang.String errorMessage = "";
                    java.lang.String fileName = "buyup_导出资料_" + java.lang.System.currentTimeMillis() + ".xls";
                    android.util.Log.d("debug", "设备系统的版本号时介于10.0到12.0之间的,通过android.provider.MediaStore获取外部存储目录");
                    android.net.Uri uri = android.provider.MediaStore.Files.getContentUri("external");
                    android.content.ContentValues contentValues = new android.content.ContentValues();
                    contentValues.put(android.provider.MediaStore.MediaColumns.DISPLAY_NAME, fileName);
                    contentValues.put(android.provider.MediaStore.MediaColumns.MIME_TYPE, "application/x-xls");
                    android.content.ContentResolver contentResolver = getContentResolver();
                    android.net.Uri uriForInsertResult = contentResolver.insert(uri, contentValues);
                    try {
                        outputStream = contentResolver.openOutputStream(uriForInsertResult);
                    } catch (java.io.IOException ioException) {
                        ioException.printStackTrace();
                        errorMessage = ioException.getMessage();
                    }
                    if (outputStream != null) {
                        //file write
                    } else {
                        android.widget.Toast.makeText(this, errorMessage, android.widget.Toast.LENGTH_LONG).show();
                    }
                } else {
                    android.widget.Toast.makeText(this, "需要授予权限才能导出文件!", android.widget.Toast.LENGTH_SHORT).show();
                }
            }
        }
    }

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/624995.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

java自定义排序Comparator

&#x1f4d1;前言 本文主要是【java】——java自定义排序Comparator的文章&#xff0c;如果有什么需要改进的地方还请大佬指出⛺️ &#x1f3ac;作者简介&#xff1a;大家好&#xff0c;我是听风与他&#x1f947; ☁️博客首页&#xff1a;CSDN主页听风与他 &#x1f304;每…

2024年AMC8历年真题练一练和答案详解(8),以及全真模拟题

今天是1月15日&#xff0c;距离本周五的AMC8正式比赛还有四天时间&#xff0c;已经放寒假了的孩子可以多点时间复习备考&#xff0c;还在准备期末考试的孩子可以先以期末考试为重&#xff0c;忙里偷闲刷一下AMC8的题目保持感觉——系统的知识学习可能时间不够了&#xff0c;可以…

响应式编程初探-自定义实现Reactive Streams规范

最近在学响应式编程&#xff0c;这里先记录下&#xff0c;响应式编程的一些基础内容 1.名词解释 Reactive Streams、Reactor、WebFlux以及响应式编程之间存在密切的关系&#xff0c;它们共同构成了在Java生态系统中处理异步和响应式编程的一系列工具和框架。 Reactive Streams…

论生逢其时

我们无法选择生时&#xff0c;所以都是生逢此时。而你采取什么样的态度去面对&#xff0c;决定着你时随波逐流还是顺势而为&#xff0c;更有甚者创造一个时代&#xff0c;度过精彩人生。 首先&#xff0c;即使我们能够生在自认为的“伟大时代”也不一定能够成就一番伟业。我…

参与直播领取龙年大礼盒!23年Coremail社区年终福利大放送

2023年终福利大放送 Coremail 管理员社区是由 Coremail 邮件安全团队、服务团队及多条产品线共同维护&#xff0c;集 7*24h 在线自助查询、技术问答交流、大咖互动分享、资料下载等功能于一体&#xff0c;专属于 Coremail 邮件管理员、安全员成长互动的知识库社区。 转眼间&am…

数据库|数据库范式(待完成)

文章目录 数据库的范式数据库的基本操作什么是数据库的范式产生的背景&#xff08;没有规范化的坏处/带来的问题&#xff09;规范化表格设计的要求五大范式的作用——树立标准打个比方——桥的承载能力1NF&#xff08;1范式&#xff09;如何转换成合适的一范式 2NF&#xff08;…

迈向高效LLM微调:低秩适应(LoRA)技术的原理与实践

在快速发展的人工智能领域中&#xff0c;以高效和有效的方式使用大型语言模型&#xff08;LLM&#xff09;变得越来越重要。在本文中&#xff0c;您将学习如何以计算高效的方式使用低秩适应&#xff08;LoRA&#xff09;对LLM进行调整&#xff01; 为什么需要微调&#xff1f;…

吼!原来教师这样发布学生期末成绩,轻松没烦恼

​随着科技的进步和教育的不断创新&#xff0c;教师发布学生期末成绩的方式也在逐渐发生变化。传统的方式&#xff0c;如纸质成绩单和口头通知&#xff0c;已经不能满足现代教育的需求。那么&#xff0c;教师应该如何更有效地发布学生期末成绩呢&#xff1f; 一、电子成绩单 电…

调用多个NFT的代理合约应该怎么设计?

需求&#xff1a;项目方由10个NFT合约&#xff0c;需要不定时的去某个合约中 转账/mint 特定的ID到特定用户。 粗笨方法&#xff1a;直接发起10笔交易&#xff0c;每次单独call 一个 合约 执行 转账操作合约代理方案&#xff1a;直接实现一个代理合约&#xff0c;由该合约执行c…

剑指offer题解合集——Week4day1

文章目录 剑指offerWeek4周一&#xff1a;二叉搜索树的后序遍历序列AC代码思路&#xff1a; 剑指offerWeek4 周一&#xff1a;二叉搜索树的后序遍历序列 题目链接&#xff1a;二叉搜索树的后序遍历序列 输入一个整数数组&#xff0c;判断该数组是不是某二叉搜索树的后序遍历…

2024年【北京市安全员-C3证】复审考试及北京市安全员-C3证证考试

题库来源&#xff1a;安全生产模拟考试一点通公众号小程序 北京市安全员-C3证复审考试考前必练&#xff01;安全生产模拟考试一点通每个月更新北京市安全员-C3证证考试题目及答案&#xff01;多做几遍&#xff0c;其实通过北京市安全员-C3证模拟考试题很简单。 1、【多选题】《…

使用scipy处理图片——任意比例缩放

大纲 缩小放大代码地址 在《使用numpy处理图片——缩放图片》一文中&#xff0c;我们每2个取1个像素来达到图像缩小的效果。这就要求缩小的比例只能是整数倍&#xff0c;而不能支持缩小到0.3倍或者放大到1.5倍这样的效果。 为了支持任意倍数的缩放功能&#xff0c;我们需要使用…

代码随想录算法训练营Day27|39. 组合总和、40.组合总和II、131.分割回文串

目录 39. 组合总和 前言 算法实现 剪枝优化 40.组合总和II 前言 算法实现 31.分割回文串 前言 算法实现 总结 39. 组合总和 题目链接 文章链接 前言 本题的组合求和对数组中的数字可以无限制重复选取&#xff0c;本题没有组合数量要求&#xff0c;仅仅是总和的限制&…

【方法】Excel表格如何“限制编辑区域”?

在制作Excel表格的时候&#xff0c;你是否遇到这些情况&#xff1f;有时候需要限定部分区域让他人协助填写&#xff0c;有时候会有很多数据或公式&#xff0c;要防止误改&#xff0c;否则会引起错误。要保护好这些区域&#xff0c;我们可以给Excel表格设置“限制编辑区域”。 …

微信小程序------WXML模板语法之条件渲染和列表渲染

目录 前言 一、条件渲染 1.wx:if 2. 结合 使用 wx:if 3. hidden 4. wx:if 与 hidden 的对比 二、列表渲染 1. wx:for 2. 手动指定索引和当前项的变量名* 3. wx:key 的使用 前言 上一期我们讲解wxml模版语法中的数据绑定和事件绑定&#xff08;上一期链接&#xff1a;…

PDF修改技巧之:如何简单方便的编辑PDF文件?

在当今精通技术的世界中&#xff0c;PDF 的使用已变得普遍&#xff0c;尤其是在商业和教育方面。如果您在审阅 PDF 文件时遇到语法或其他错误怎么办&#xff1f; 尽管 PDF 文件不像 Word 或在线文档那样容易编辑&#xff0c;但借助高级工具&#xff0c;您一定可以进行编辑。 …

MySQL的安装

一&#xff1a;MySQL的安装 步骤一&#xff1a; 下载mysql&#xff0c;地址&#xff1a;MySQL :: Download MySQL Installer 在MySQL的官网对其进行下载&#xff1a; 也可以下滑&#xff0c;在下面点击此社区服务器安装进行下载&#xff1a; 步骤二&#xff1a; 进入到下载…

Redis之bigkey

目录 1、什么是bigkey&#xff1f; 2、bigkey大的小 3、bigkey有哪些危害&#xff1f; 4、bigkey如何产生&#xff1f; 5、bigkey如何发现&#xff1f; 6、bigkey如何删除&#xff1f; 7、BigKey调优&#xff0c;惰性释放lazyfree 8、生产上限制keys * /flushdb/flushal…

ERP简要数据模型

1. 人力资源管理模块数据模型&#xff1a; -- 创建员工信息表 CREATE TABLE employee (employee_id INT PRIMARY KEY AUTO_INCREMENT,first_name VARCHAR(50) NOT NULL,last_name VARCHAR(50) NOT NULL,gender ENUM(Male, Female, Other),birth_date DATE,email VARCHAR(100),…

前端导致浏览器奔溃原因分析

内存泄漏 内存泄漏&#xff08;Memory Leak&#xff09;是指程序中已动态分配的堆内存由于某种原因程序未释放或无法释放&#xff0c;造成系统内存的浪费&#xff0c;导致程序运行速度减慢甚至系统崩溃等严重后果。&#xff08;程序某个未使用的变量或者方法&#xff0c;长期占…