欢迎转载,但请注意,除非特别声明,本站采用许可:署名,非商业。需要联系我可发邮件至
预览模式: 普通 | 列表

在Ubuntu 9.04下安装Adobe AIR


安装AIR是为了用新浪微博的客户端
http://wing.uedsite.com/

到这里下载
http://get.adobe.com/air/
bin 版本

chmod +x AdobeAIRInstaller.bin
./AdobeAIRInstaller.bin

如果不能运行,可能需要
sudo apt-get install ia32-libs

安装以后就可以装wing了。
装完以后,点运行可能没反应。

[阅读全文]

标签: Linux

Ubuntu - Apache2 - apache2: bad user name ${APACHE_RUN_USER}

apache2: bad user name ${APACHE_RUN_USER}

run

sudo apahce2ctl -k restart

instead of 

sudo apche2 -k restart
标签: apache2

让vim自动识别多种文本编码UTF-8,GB2312......

编程.vimrc文件
vim ~/.vimrc
加入

set fileencodings=ucs-bom,utf8,GB18030,Big5,latin1

vim可以自动识别各种编码的文件了。
标签: Linux

php 调用java写的web service报错

错误信息如下:
SoapFault exception: [soap:Client] Not enough message parts were received for the operation.

Java服务端使用XFire

后来发现必须要用数组的方式传递参数
$param1 =" hello"
$param = array('inPara'=>$param

[阅读全文]

标签: PHP

How to check the version of ImageMagick ?

怎样检查linux 下已安装的ImageMagick的版本?
run the following command
convert --version
标签: FAQ

Ubuntu9.0.4下安装播放DVD的软件

执行如下命令:
sudo apt-get install ubuntu-restricted-extras
sudo apt-get install gxine
sudo /usr/share/doc/libdvdread4/install-css.sh

参考链接:
https://help.ubuntu.com/community/RestrictedFormats
https://help.ubuntu.

[阅读全文]

标签: Linux

一份很好的B+树文档

不错的ppt,学习B+树必读。
如果你有更好的资料,欢迎推荐。
下载文件b+tree.zip (52.79 KB , 下载:3388次)
标签: B+树

J2ME HTTP GET/POST 例子

几个比较好的例子:
http://www.java2s.com/Code/Java/J2ME/HttpMIDlet.htm
http://www.java2s.com/Code/Java/J2ME/HttpConnection.htm
http://www.java2s.com/Code/Java/J2ME/UseGETorPOSTtocommunicatewithaJavaservlet.htm

想说的

[阅读全文]

标签: JavaME