Categories
- Android (3)
- Cloud Computing (4)
- Development (13)
- Linux (31)
- Uncategorized (31)
- WordPress (5)
Tags
Archives
-
Random Posts
Delicious Bookmarks
- Sending/receiving a Large size of message 2010/08/30
- Linux: How To Clear The Cache From Memory 2010/08/26
- Ejabberd-Cluster Database Configuration 2010/08/21
- How to: Find the inode size of an ext2 / ext3 filesystem 2010/08/21
- Ubuntu Router 2010/08/21
- HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc. 2010/08/21
Google Reader Shares
Richard's GR ShareLinks
Meta
Monthly Archives: January 2005
An open letter from Jonathan Schwartz to Sam Palmisano
刚刚看到了一则新闻,Jonathan Schwartz, President, COO, Sun, 写了一封 open letter 给 Sam Palmisano, IBM, 要求 IBM 对 Solaris 10 提供支持。大厂商之间的较量啊,呵呵,越来越激烈了。尤记得一年多前,IBM 与 Sun 在 Java IDE tools 和 open sourcing Java 等各方面的 secure negotiation 和 open letter,现在又开始了一轮。 Dear Sam, IBM and Sun have … Continue reading
Convert the code set of the text file
在使用Eclipse开发过程中,推荐在初始安装完成之后立刻通过“首选项”-“工作台”-“编辑器”,将文本文件的内部编码修改为UTF-8,这样有利于开发工作的国际合作。 转化文本文件内码的方法: 1,Linux提供了一个专门的指令iconv来实现转化。大致的语法是:iconv -f coding -t coding inputfile -o outputfile比如,我要将一个内码为GB18030的文本文件转化成内码为UTF-8,可以:$ iconv -f GB18030 -t UTF-8 MyTestIn.txt -o MyTestOut.txt iconv简单易用,可若在一个复杂的目录结构中进行转换,毕竟麻烦了些,所以一般需要使用shell, perl来编制一段简单的程序以实现复杂的转换工作。 2,使用专门的转换工具。正是因为iconv的不能直接对复杂的目录层次直接操作这个问题,我们才考虑使用第三方的工具来转换。在我试用的工具中,Uni2Me短小精悍,而且是绿色软件,值得推荐一下。下载地址:http://alf-li.pcdiscuss.com
Posted in Uncategorized
Leave a comment