摘要:
在Android开发中,当程序执行需要操作安全敏感项时,必须在androidmanifest.xml中声明相关权限请求。 比如,声明拨打电话的权限请求方法如下: 其他的权限声明方法与上面的类似,Android具体权限请求可以参阅Android API帮助文档,本文整理了该文档中的全部权限请求,汇总如 阅读全文
摘要:
//过滤file文件夹中以“.txt”结尾和目录的文件或者文件夹 public static void method2(File file){ File[] files=file.listFiles(new FilenameFilter() { @Override public boolean accept(Fil... 阅读全文
摘要:
File file=new File("D:/test/b.txt"); file.renameTo(new File("D:/test/cc/c.txt"));//将D:/test/b.txt 移动到 D:/test/cc/c.txt (这里名字也改了) 注意 移动后必须是文件 不能是文件名 阅读全文
摘要:
Scanner input = new Scanner(System.in); outer: while (true) { System.out.println("您是要查询年份1,举办地2,还是冠军国3,退出请输入0:"); int num = input.nextInt(); switch (num) {... 阅读全文
摘要:
使用系统当前日期加以调整,如期转字符串 // 使用系统当前日期加以调整 private String getPhotoFileName() { Date date = new Date(System.currentTimeMillis()); SimpleDateFormat dateFormat 阅读全文
摘要:
List list=new ArrayList(); //将list集合变为数组 String[] arr=new String[list.size()]; //带参数和不带的区别 Object[] array = list.toArray();//返回的为Object数组 arr=list.toArray(arr)... 阅读全文
摘要:
this.name.compareTo(o.name);对英文才精准,对中文不能进行排序 // 先姓名升序排序,同名则再年龄升序排序。 @Override public int compareTo(Student o) { if (!this.name.equals(o.name)) { // re 阅读全文