码迷,mamicode.com
首页 >  
搜索关键字:file system    ( 97928个结果
Unix/Linux中/usr目录的由来
在Linux系统中,有一个很重要的目录——/usr目录。关于这个目录名称的由来,网上主要有下面几种说法:user的缩写User Shareable Read-only的缩写Unix/User System Resources的缩写Unix/User Software Resources的缩写目前大多...
分类:系统相关   时间:2014-05-08 09:07:43    阅读次数:347
android 关闭应用
我之前一直采用的是System.exit(0); 今天看到有人说这个方法不太好,这是J2SE里的方法,他主要是通过终止正在运行的JAVA虚拟机,导致程序终止。 推荐以下方法: 1.杀死本进程: android.os.Process.killProcess(android.os.Process.myPid()); 2.强制关闭与该包有关的一切活动(杀死其他进程): ActivityMan...
分类:移动开发   时间:2014-05-08 04:30:28    阅读次数:368
Flex读取txt文件中的内容(二)
Flex读取txt文件中的内容 自动生成的文件 LoadTxt-app.xml: <!-- Adobe AIR Application Descriptor File Template. Specifies parameters for identifying, installing, and launching AIR applications. xmlns - ...
分类:其他好文   时间:2014-05-08 03:58:40    阅读次数:261
File类的基本操作之读出全部文件夹路径
package org.mark.file; import java.io.File; /** * File类的基本操作之读出全部文件夹路径 * 如果给定一个目录,要求将此目录中的全部文件都列出来 * 使用递归 */ public class TestChare { /** * @param args */ public static void main(String[]...
分类:其他好文   时间:2014-05-08 03:53:29    阅读次数:259
Java语言程序设计基础篇 循环(四)
①打印:***************for(intx=1;x<=5;x++){ for(inty=x;y<=5;y++){ System.out.print("*");//向下一般的格式for(inty=x;y<=5;y++) } System.out.println(); }②打印:***************for(intx=1;x<=5;x++){ for(inty=1;y<=x;y++){ System.out.print("*");//..
分类:编程语言   时间:2014-05-08 03:41:13    阅读次数:295
(赵小明RHCE笔记)linux基础之四 权限详解
一、specialpermissionsforexecutables1.specialpermissionsforexecutables:-suid:commandrunwithpermissionsoftheownerofthecommand,notexecutorofthecommand-sgid:commandrunswithgroupaffiliationofthegroupofthecommandeg:file:usergroupothersuidsgid二、specialpermissio..
分类:系统相关   时间:2014-05-08 03:04:17    阅读次数:574
linux之磁盘管理(四)
文件系统管理重新创建文件系统会损坏原有文件。创建某个分区上的文件系统使用mkfs:makefilesystem-tFSTYPE指定文件系统类型mkfs命令比较特殊[root@www~]#whichmkfs.ext2/sbin/mkfs.ext2[root@www~]#ls-l/sbin/mkfs.ext2-rwxr-xr-x3rootroot47312Sep42009/sbin/mkfs.ext2所以:..
分类:系统相关   时间:2014-05-08 02:33:29    阅读次数:406
Flex读取txt文件中的内容报错
Flex读取txt文件中的内容 1、具体错误如下 2、错误原因      读取文件不存在 var file:File = new File(File.applicationDirectory.nativePath+"/phone.txt"); 3、解决办法      将文件导入进去...
分类:其他好文   时间:2014-05-08 02:13:59    阅读次数:236
java实现——004替换空格
1.创建新的字符串 1 public class T004 { 2 public static void main(String[] args){ 3 System.out.println(replaceBlank("we are happy")); 4 } 5 ...
分类:编程语言   时间:2014-05-08 01:08:18    阅读次数:364
绩效考核初步统计
以上有待大家商榷给出分数值,并且等待后续项目进展给出改进以及补漏。
分类:其他好文   时间:2014-05-08 00:48:40    阅读次数:271
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!