摘要: 系统:ubuntu11.10*64位 JDK:1.7.0_04 Eclipse:eclipse-mobile-juno-linux-gtk-x86_641.安装好ubuntu,JDK;eclipse直接解压即可2. 启动Eclipse, 选择 Help >Install New Software,在弹出框的Work With编辑框中输入更新插件的网址: https://dl-ssl.google.com/android/eclipse/. 选择Developer Tools,一路点击Next,接受协议,最后点击Finish,开始安装,安装结束后会要求重启eclipse3.重新启动Ecl. 阅读全文
posted @ 2012-08-08 18:53 ls|grep 阅读(426) 评论(0) 推荐(0) 编辑
摘要: IBus,全称Intelligent Input Bus for Linux/Unix OS,是下一代输入法框架,为了取代古老的SCIM,支持多种输入法 在英文环境下,ibus默认不启动, 只要在language support里选择keyboard input method为ibus就可以了 阅读全文
posted @ 2012-08-08 17:42 ls|grep 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 先去Oracle下载Linux下的JDK压缩包,我下载的是jdk-7u4-linux-i586.tar.gz文件,下好后直接解压Step1:# 将解压好的jdk1.7.0_04文件夹用最高权限复制到/usr/lib/jvm目录里sudo cp -r ~/jdk1.7.0_04/ /usr/lib/jvm/Step2:# 配置环境变量sudo gedit ~/.profile在末尾加上:export JAVA_HOME=/usr/lib/jvm/jdk1.7.0_04然后保存关闭,使用source更新下$ source ~/.profile使用env命令察看JAVA_HOME的值$ env如果J 阅读全文
posted @ 2012-08-07 21:47 ls|grep 阅读(188) 评论(0) 推荐(0) 编辑
摘要: I am new to Ruby and to Rails (using Ruby 1.9.3 and Rails 3.2.3) so I picked up the Agile Web Development book and have been working through it (apologies if this isn't the correct place for this question but the pragprog forums don't seem to work for me). I am currently working through the 阅读全文
posted @ 2012-04-26 16:53 ls|grep 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 在项目中,导出EXCEL时,由于数据库字段中存在换行字符(可能在我们查询时仅仅可以看到的是空字符),这样在导出到EXCEL时,会出现折行显示,比如我们导出EXCEL时,从表中导出的备注(NOTE)字段里由于有换行字符,所以在我们导出的EXCEL中会出现一行数据从备注这里折成了2行,解决方法就是在数据库查询时,把这里的备注字段的换行字符给替换掉,如:REPLACE(REPLACE(NOTE,CHAR(10),''''),CHAR(13),'''') 阅读全文
posted @ 2012-03-31 14:37 ls|grep 阅读(697) 评论(0) 推荐(0) 编辑
摘要: --摘自《Javascript权威指南》 Javascript没有块级作用域。函数中声明的所有变量,无论是在哪里声明的,在整个函数中它们都是有定义的。在下面的代码中,变量i、j和k的作用域是相同的,它们三个在整个函数体中都有定义。 function test(o){ var i=0; //i is defined throughout function if(typeof o=="object"){ var j=0; //... 阅读全文
posted @ 2012-03-17 15:31 ls|grep 阅读(263) 评论(0) 推荐(0) 编辑