最近在项目中使用LogStash做日志的采集和过滤,感觉LogStash还是很强大的。input { file{ path => "/XXX/syslog.txt" start_position => beginning codec => mu...
分类:
其他好文 时间:
2015-08-27 10:47:03
阅读次数:
305
需要GD库大于2.1版本 编译GD库请参考文章?安装GD库 ./configure?--prefix=/usr/local/php/?--with-config-file-path=/usr/local/php/etc/??--with-libxml-dir=/usr/local/libxml2/?--with-jpeg-dir=/usr/...
分类:
Web程序 时间:
2015-08-21 11:37:02
阅读次数:
575
BufferedInputStream in = new BufferedInputStream(
new FileInputStream(new File(path)));
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = false;
options.in...
分类:
移动开发 时间:
2015-08-21 00:16:16
阅读次数:
141
Fast-CGI: ./configure --prefix=/usr/local/php --enable-fastcgi --enable-force-cgi-redirect --with-config-file-path=/etc --with-zlib --with-mysql --with-xml --with-gd --enable-gd-native-ttf --enable...
分类:
Web程序 时间:
2015-08-20 15:39:46
阅读次数:
131
创建文件New-Item -path $file_path -itemtype file创建目录New-Item -path $dir_path -type directory删除目录Remove-Item-Force-Recurse $dir赋予权限$account ="Business"$Fol...
分类:
系统相关 时间:
2015-08-20 12:48:42
阅读次数:
181
./configure–prefix=/usr/local/phpphp安装目录–with-apxs2=/usr/local/apache/bin/apxs–with-config-file-path=/usr/local/php/etc指定php.ini位置–with-mysql=/usr/local/mysqlmysql安装目录,对mysql的支持–with-mysqli=/usr/local/mysql/bin/mysql_configmysqli文件?.
分类:
Web程序 时间:
2015-08-14 01:17:32
阅读次数:
176
表单php上传文件到服务器,注意需要获取权限: if($_FILES['upload_pic']['size'] > 0) { $file_path=dirname(__FILE__); //文件目录 $file_path=str_...
分类:
Web程序 时间:
2015-08-13 22:11:59
阅读次数:
152
一、源码安装1.编译安装./configure --prefix=/usr/local/php--with-config-file-path=/usr/local/php/etc --with-bz2 --with-curl --enable-ftp --enable-sockets --disable-ipv6 --with-gd --with-jpeg-dir=/usr/local...
分类:
Web程序 时间:
2015-08-13 10:02:46
阅读次数:
340
1.首先解压,然后configure,以下是我的configure参数 ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/ --with-mysqli=/u...
分类:
Web程序 时间:
2015-08-12 16:37:33
阅读次数:
218
String path="D:\\新建文件夹\\2.png";File file=new File(path);System.out.println(file.exists()); String path1="D:/新建文件夹/2.png";File file1=new File(path);Sy....
分类:
编程语言 时间:
2015-08-11 23:16:04
阅读次数:
253