`
文章列表
ubuntu14.04 xfce_install_uninstallinstall:sudo apt-get install xfce4then log out,OK!ORsudo apt-get install xubuntu-desktop---------------uninstall:sudo apt-get remove xfce4            卸载相关软件sudo apt-get remove xfce4*      自动卸载不必要的软件sudo apt-get  autoremove 系统清理$sudo apt-get  clean如果安装的是xubuntu-deskto ...
Missing Icons and file names with XfceTry installing the gnome-icon-theme-full and tango-icon-theme packages:sudo apt-get install gnome-icon-theme-full tango-icon-theme...log out and back in again, then change the icon theme in Settings Manager >> Appearance >> Icons.
关闭 ubuntu System program problem detected每次开机都出现:System program problem detected很麻烦,关闭方法:vim /etc/default/apport# set this to 0 to disable apport, or to 1 to enable it# you can temporarily override this with# sudo service apport start force_start=1enabled=0把原先的1改成0就可以了。

Java_Thread_join()

    博客分类:
  • Java
MSDN:Blocks the calling thread until a thread terminates 1. 什么是 the calling thread? 2. 什么是 a thread?   运行一个程序,即开启了一个进程和至少一个线程,干活的是线程而非进程!the calling thread 我们可以认为是MainThread(或者调用线程的 ...

Git_reset remote origin

    博客分类:
  • Git
git remote add origin git@xxx.git --error orgin 此时在错误的origin上进行提交代码 就会报错 fatal: remote error: Permission denied   想要撤回错误的origin需 git remote rm orgin 然后再给出正确的origin git remote add origin git@XXX.git --correct orgin   就可以正确提交代码了
/**      * A thread state.  A thread can be in one of the following states:       * <ul>      * <li>{@link #NEW}<br>      *     A thread that has not yet started is in this state.      *     </li>      * <li>{@link #RUNNABLE}<br>      *     A thread execut ...

Java_引用类型

    博客分类:
  • Java
java中四种引用类型     对象的强、软、弱和虚引用   在JDK 1.2以前的版本中,若一个对象不被任何变量引用,那么程序就无法再使用这个对象。也就是说,只有对象处于可触及(reachable)状态,程序才能使用它。从JDK 1.2版 ...
Java编程中线程池的最大性能开发与风险规避   虽然线程池能大大提高服务器的并发性能,但使用它也会存在一定风险。与 所有多线程应用程序一样,用线程池构建的应用程序容易产生各种并发问题,如对共享资源的竞争和死 ...
如果你需要在Linux中操作windows下的文件,那么你可能会经常遇到文件编码转换的问题。Windows中默认的文件格式是GBK(gb2312),而Linux一般都是UTF-8。下面介绍一下,在Linux中如何查看文件的编码及如何进行对文件进行编码转换。 ·查看文件编码 在Linux中查看文件编码可以通过以下几种方式:   1.在Vim中可以直接查看文件编码   :set fileencoding 即可显示文件编码格式。  如果你只是想查看其它编码格式的文件或者想解决用Vim查看文件乱码的问题,那么你可以在 ~/.vimrc 文件中添加以下内容:   set encoding=u ...
linux_ssh远程文件传输命令scp   一、scp是什么?   scp是secure copy的简写,用于在Linux下进行远程拷贝文件的命令,和它类似的命令有cp,不过cp只是在本机进行拷贝不能跨服务器,而且scp传输是加密的。可能会稍微影响一下速度 ...
1. 现象:在我们系统中,新增、编辑数据后,继续刷新页面后,会出现重复提交的现象 2. 原因及解决方案:我们在设置action跳转的时候,将跳转方式设置成了type="chain"的方式,    解决方案:我们需要将action的跳转设置成type="redirectAction"。 3. 实例:    (1)注:用<param name="message">${message}</param>这种方式传递参数能避免中文乱码的情况。用 ?filevalue=${value}会出现乱码   <a ...
Under Ubuntu14.04   1. right click in terminal 2. Profiles > Profile Preferences > Colors 3. unselect Use colors from system theme4. set Text Color as #708284    set Background Color as #07242E  
via: http://www.cnblogs.com/ma6174/archive/2011/12/10/2283393.html   源码托管到了github,后期增加了好多新功能,具体详见:https://github.com/ma6174/vim   vimrc 精简版(no插件)"""""""""""""""&qu ...
默认情况下使用Vim编程,在修改文件后系统会自动生成一个带~的备份文件,看上去又乱又讨人厌。怎么让Vim不自动生成这些备份文件呢?Windows下2. 找到这个文件:C:/Program Files/Vim/ wim70/vimrc_example.vim3. 找到后打开,找到这一句:if has("vms")把这个判断里的if部分保留,else部分注释掉。(Vim的注释符是")即修改后应该是这样的:if has("vms")set nobackup " do not keep a backup file, use versions ...
via: http://vsp.iteye.com/blog/1182887   SpringJdbc的几种不同的用法   Spring对jdbc做了良好的封装,本人在学习时做了以下几种方式的尝试  首页先来创建一个dao接口  package com.wys.dao;   public interface IUserDao {       void save();   }     第一种方式通过继承JdbcDaoSupport来获取JdbcTemplate,需要注入JdbcTemplate  package com.wys.dao.impl;   import ja ...
Global site tag (gtag.js) - Google Analytics