${path.separator} 兼容 windows & linux: ${JAVA_HOME}/jre/lib/rt.jar${path.separator}${JAVA_HOME}/jre/lib/jce.jar ...
分类:
其他好文 时间:
2018-07-07 18:05:08
阅读次数:
262
一、获取jar包的位置 1.使用类路径 返回值都是/xxx/xxx.jar这种形式。如果路径包含Unicode字符,还需要将路径转码 2.利用了java运行时的系统属性来得到jar文件位置,也是/xxx/xxx.jar这种形式 path.separator在Windows系统下得到;(分号),在Li ...
分类:
编程语言 时间:
2018-06-20 21:27:07
阅读次数:
187
但有一问题没有解决, 就是在include前判断文件是否存在的问题. 1 2 3 4 5 6 7 8 9 10 11 12 13 set_include_path('aa' . PATH_SEPARATOR . get_include_path()); function __autoload($cl ...
分类:
Web程序 时间:
2017-08-20 16:51:22
阅读次数:
211
今天开始学习 IO 类 和 方法 首先 了解 File 类 首先看一下 它的四个 static field The system-dependent path-separator character represented as a string for convenience. The syste ...
分类:
其他好文 时间:
2017-06-30 00:04:56
阅读次数:
244
http://blog.csdn.net/alex_zhuang/article/details/7340901 对以下错误: Java.lang.RuntimeException: java.lang.IllegalArgumentException: File /data/data/com.al ...
分类:
移动开发 时间:
2017-04-10 21:20:40
阅读次数:
296
下面就是php导出excel的程序 <?phpini_set("display_errors",1);//是否显示报错信息set_include_path(get_include_path() . PATH_SEPARATOR . '1.6.6/Classes/');//设置此页面包含路径inclu ...
分类:
其他好文 时间:
2016-11-30 11:28:56
阅读次数:
262
1.先看下四个静态变量 The system-dependent path-separator character, represented as a string for convenience. The system-dependent path-separator character. The ...
分类:
编程语言 时间:
2016-10-16 16:29:24
阅读次数:
197
php自动载方法有两种. 第一种方案用__autoload,这个函数较简单,也较弱. 但有一问题没有解决, 就是在include前判断文件是否存在的问题. 1 2 3 4 5 6 7 8 9 10 11 12 13 set_include_path('aa' . PATH_SEPARATOR . g ...
分类:
Web程序 时间:
2016-05-03 16:16:05
阅读次数:
193
/** * 判断当前服务器系统 * @return string */ function getOS(){ if(PATH_SEPARATOR==':'){ echo "Linux"; }else{ ...
分类:
其他好文 时间:
2015-11-24 12:43:31
阅读次数:
119
字符串拼接: char *value = malloc(strlen(basePath) + strlen(resourceDirectory) + strlen(PATH_SEPARATOR) + 1); if (value == NULL) { ? ?exit(1); } strcpy(value, basePath); strcat(value, resourceD...
分类:
编程语言 时间:
2015-09-15 20:24:40
阅读次数:
185