Intellij IDEA 快捷键整理

<h1>
    <span class="link_title"><a href="/djcken/article/details/16362629">
    Intellij IDEA 快捷键整理(TonyCody)            
    </a></span>
</h1>
    <div class="article_manage clearfix">
    <div class="article_r">
        <span class="link_postdate">2013-11-16 22:41</span>
        <span class="link_view" title="阅读次数">34665人阅读</span>
        <span class="link_comments" title="评论次数"> <a href="#comments" onclick="_gaq.push(['_trackEvent','function', 'onclick', 'blog_articles_pinglun'])">评论</a>(1)</span>
        <span class="link_collect tracking-ad" data-mod="popu_171"> <a href="javascript:void(0);" onclick="javascript:collectArticle('Intellij+IDEA+%e5%bf%ab%e6%8d%b7%e9%94%ae%e6%95%b4%e7%90%86%ef%bc%88TonyCody%ef%bc%89','16362629');return false;" title="收藏" target="_blank">收藏</a></span>
         <span class="link_report"> <a href="#report" onclick="javascript:report(16362629,2);return false;" title="举报">举报</a></span>

    </div>
</div>
<div class="embody" style="display:none" id="embody">
    <span class="embody_t">本文章已收录于:</span>
    <div class="embody_c" id="lib" value="{&quot;err&quot;:0,&quot;msg&quot;:&quot;ok&quot;,&quot;data&quot;:[]}"></div>
</div>
<style type="text/css">        
        .embody{
            padding:10px 10px 10px;
            margin:0 -20px;
            border-bottom:solid 1px #ededed;                
        }
        .embody_b{
            margin:0 ;
            padding:10px 0;
        }
        .embody .embody_t,.embody .embody_c{
            display: inline-block;
            margin-right:10px;
        }
        .embody_t{
            font-size: 12px;
            color:#999;
        }
        .embody_c{
            font-size: 12px;
        }
        .embody_c img,.embody_c em{
            display: inline-block;
            vertical-align: middle;               
        }
         .embody_c img{               
            width:30px;
            height:30px;
        }
        .embody_c em{
            margin: 0 20px 0 10px;
            color:#333;
            font-style: normal;
        }
</style>
<script type="text/javascript">
    $(function () {
        try
        {
            var lib = eval("("+$("#lib").attr("value")+")");
            var html = "";
            if (lib.err == 0) {
                $.each(lib.data, function (i) {
                    var obj = lib.data[i];
                    //html += '<img src="' + obj.logo + '"/>' + obj.name + "&nbsp;&nbsp;";
                    html += ' <a href="' + obj.url + '" target="_blank">';
                    html += ' <img src="' + obj.logo + '">';
                    html += ' <em><b>' + obj.name + '</b></em>';
                    html += ' </a>';
                });
                if (html != "") {
                    setTimeout(function () {
                        $("#lib").html(html);                      
                        $("#embody").show();
                    }, 100);
                }
            }      
        } catch (err)
        { }
        
    });
</script>
  <div class="category clearfix">
    <div class="category_l">
       <img src="http://static.blog.csdn.net/images/category_icon.jpg">
        <span>分类:</span>
    </div>
    <div class="category_r">
                <label onclick="GetCategoryArticles('1156473','DJCKEN','top','16362629');">
                    <span onclick="_gaq.push(['_trackEvent','function', 'onclick', 'blog_articles_fenlei']);">Android手机应用开发<em>(39)</em></span>
                  <img class="arrow-down" src="http://static.blog.csdn.net/images/arrow_triangle _down.jpg" style="display:inline;">
                  <img class="arrow-up" src="http://static.blog.csdn.net/images/arrow_triangle_up.jpg" style="display:none;">
                    <div class="subItem">
                        <div class="subItem_t"><a href="http://blog.csdn.net/DJCKEN/article/category/1156473" target="_blank">作者同类文章</a><i class="J_close">X</i></div>
                        <ul class="subItem_l" id="top_1156473">                            
                        </ul>
                    </div>
                </label>                    
    </div>
</div>
<script type="text/javascript" src="http://static.blog.csdn.net/scripts/category.js"></script>  

【常规】
  1. Ctrl+Shift + Enter,语句完成
  2. “!”,否定完成,输入表达式时按 “!”键
  3. Ctrl+E,最近的文件
  4. Ctrl+Shift+E,最近更改的文件
  5. Shift+Click,可以关闭文件
  6. Ctrl+[ OR ],可以跑到大括号的开头与结尾
  7. Ctrl+F12,可以显示当前文件的结构
  8. Ctrl+F7,可以查询当前元素在当前文件中的引用,然后按 F3 可以选择
  9. Ctrl+N,可以快速打开类
  10. Ctrl+Shift+N,可以快速打开文件
  11. Alt+Q,可以看到当前方法的声明
  12. Ctrl+P,可以显示参数信息
  13. Ctrl+Shift+Insert,可以选择剪贴板内容并插入
  14. Alt+Insert,可以生成构造器/Getter/Setter等
  15. Ctrl+Alt+V,可以引入变量。例如:new String();  自动导入变量定义
  16. Ctrl+Alt+T,可以把代码包在一个块内,例如:try/catch
  17. Ctrl+Enter,导入包,自动修正
  18. Ctrl+Alt+L,格式化代码
  19. Ctrl+Alt+I,将选中的代码进行自动缩进编排,这个功能在编辑 JSP 文件时也可以工作
  20. Ctrl+Alt+O,优化导入的类和包
  21. Ctrl+R,替换文本
  22. Ctrl+F,查找文本
  23. Ctrl+Shift+Space,自动补全代码
  24. Ctrl+空格,代码提示(与系统输入法快捷键冲突)
  25. Ctrl+Shift+Alt+N,查找类中的方法或变量
  26. Alt+Shift+C,最近的更改
  27. Alt+Shift+Up/Down,上/下移一行
  28. Shift+F6,重构 - 重命名
  29. Ctrl+X,删除行
  30. Ctrl+D,复制行
  31. Ctrl+/或Ctrl+Shift+/,注释(//或者/**/)
  32. Ctrl+J,自动代码(例如:serr)
  33. Ctrl+Alt+J,用动态模板环绕
  34. Ctrl+H,显示类结构图(类的继承层次)
  35. Ctrl+Q,显示注释文档
  36. Alt+F1,查找代码所在位置
  37. Alt+1,快速打开或隐藏工程面板
  38. Ctrl+Alt+left/right,返回至上次浏览的位置
  39. Alt+left/right,切换代码视图
  40. Alt+Up/Down,在方法间快速移动定位
  41. Ctrl+Shift+Up/Down,向上/下移动语句
  42. F2 或 Shift+F2,高亮错误或警告快速定位
  43. Tab,代码标签输入完成后,按 Tab,生成代码
  44. Ctrl+Shift+F7,高亮显示所有该文本,按 Esc 高亮消失
  45. Alt+F3,逐个往下查找相同文本,并高亮显示
  46. Ctrl+Up/Down,光标中转到第一行或最后一行下
  47. Ctrl+B/Ctrl+Click,快速打开光标处的类或方法(跳转到定义处)
  48. Ctrl+Alt+B,跳转到方法实现处
  49. Ctrl+Shift+Backspace,跳转到上次编辑的地方
  50. Ctrl+O,重写方法
  51. Ctrl+Alt+Space,类名自动完成
  52. Ctrl+Alt+Up/Down,快速跳转搜索结果
  53. Ctrl+Shift+J,整合两行
  54. Alt+F8,计算变量值
  55. Ctrl+Shift+V,可以将最近使用的剪贴板内容选择插入到文本
  56. Ctrl+Alt+Shift+V,简单粘贴
  57. Shift+Esc,不仅可以把焦点移到编辑器上,而且还可以隐藏当前(或最后活动的)工具窗口
  58. F12,把焦点从编辑器移到最近使用的工具窗口
  59. Shift+F1,要打开编辑器光标字符处使用的类或者方法 Java 文档的浏览器
  60. Ctrl+W,可以选择单词继而语句继而行继而函数
  61. Ctrl+Shift+W,取消选择光标所在词
  62. Alt+F7,查找整个工程中使用地某一个类、方法或者变量的位置
  63. Ctrl+I,实现方法
  64. Ctrl+Shift+U,大小写转化
  65. Ctrl+Y,删除当前行
  66. Shift+Enter,向下插入新行
  67. psvm/sout,main/System.out.println(); Ctrl+J,查看更多
  68. Ctrl+Shift+F,全局查找
  69. Ctrl+F,查找/Shift+F3,向上查找/F3,向下查找
  70. Ctrl+Shift+S,高级搜索
  71. Ctrl+U,转到父类
  72. Ctrl+Alt+S,打开设置对话框
  73. Alt+Shift+Inert,开启/关闭列选择模式
  74. Ctrl+Alt+Shift+S,打开当前项目/模块属性
  75. Ctrl+G,定位行
  76. Alt+Home,跳转到导航栏
  77. Ctrl+Enter,上插一行
  78. Ctrl+Backspace,按单词删除
  79. Ctrl+"+/-",当前方法展开、折叠
  80. Ctrl+Shift+"+/-",全部展开、折叠
【调试部分、编译】
  1. Ctrl+F2,停止
  2. Alt+Shift+F9,选择 Debug
  3. Alt+Shift+F10,选择 Run
  4. Ctrl+Shift+F9,编译
  5. Ctrl+Shift+F10,运行
  6. Ctrl+Shift+F8,查看断点
  7. F8,步过
  8. F7,步入
  9. Shift+F7,智能步入
  10. Shift+F8,步出
  11. Alt+Shift+F8,强制步过
  12. Alt+Shift+F7,强制步入
  13. Alt+F9,运行至光标处
  14. Ctrl+Alt+F9,强制运行至光标处
  15. F9,恢复程序
  16. Alt+F10,定位到断点
  17. Ctrl+F8,切换行断点
  18. Ctrl+F9,生成项目
  19. Alt+1,项目
  20. Alt+2,收藏
  21. Alt+6,TODO
  22. Alt+7,结构
  23. Ctrl+Shift+C,复制路径
  24. Ctrl+Alt+Shift+C,复制引用,必须选择类名
  25. Ctrl+Alt+Y,同步
  26. Ctrl+~,快速切换方案(界面外观、代码风格、快捷键映射等菜单)
  27. Shift+F12,还原默认布局
  28. Ctrl+Shift+F12,隐藏/恢复所有窗口
  29. Ctrl+F4,关闭
  30. Ctrl+Shift+F4,关闭活动选项卡
  31. Ctrl+Tab,转到下一个拆分器
  32. Ctrl+Shift+Tab,转到上一个拆分器
【重构】
  1. Ctrl+Alt+Shift+T,弹出重构菜单
  2. Shift+F6,重命名
  3. F6,移动
  4. F5,复制
  5. Alt+Delete,安全删除
  6. Ctrl+Alt+N,内联
【查找】
  1. Ctrl+F,查找
  2. Ctrl+R,替换
  3. F3,查找下一个
  4. Shift+F3,查找上一个
  5. Ctrl+Shift+F,在路径中查找
  6. Ctrl+Shift+R,在路径中替换
  7. Ctrl+Shift+S,搜索结构
  8. Ctrl+Shift+M,替换结构
  9. Alt+F7,查找用法
  10. Ctrl+Alt+F7,显示用法
  11. Ctrl+F7,在文件中查找用法
  12. Ctrl+Shift+F7,在文件中高亮显示用法
【VCS】
  1. Alt+~,VCS 操作菜单
  2. Ctrl+K,提交更改
  3. Ctrl+T,更新项目
  4. Ctrl+Alt+Shift+D,显示变化【常规】
    1. Ctrl+Shift + Enter,语句完成
    2. “!”,否定完成,输入表达式时按 “!”键
    3. Ctrl+E,最近的文件
    4. Ctrl+Shift+E,最近更改的文件
    5. Shift+Click,可以关闭文件
    6. Ctrl+[ OR ],可以跑到大括号的开头与结尾
    7. Ctrl+F12,可以显示当前文件的结构
    8. Ctrl+F7,可以查询当前元素在当前文件中的引用,然后按 F3 可以选择
    9. Ctrl+N,可以快速打开类
    10. Ctrl+Shift+N,可以快速打开文件
    11. Alt+Q,可以看到当前方法的声明
    12. Ctrl+P,可以显示参数信息
    13. Ctrl+Shift+Insert,可以选择剪贴板内容并插入
    14. Alt+Insert,可以生成构造器/Getter/Setter等
    15. Ctrl+Alt+V,可以引入变量。例如:new String();  自动导入变量定义
    16. Ctrl+Alt+T,可以把代码包在一个块内,例如:try/catch
    17. Ctrl+Enter,导入包,自动修正
    18. Ctrl+Alt+L,格式化代码
    19. Ctrl+Alt+I,将选中的代码进行自动缩进编排,这个功能在编辑 JSP 文件时也可以工作
    20. Ctrl+Alt+O,优化导入的类和包
    21. Ctrl+R,替换文本
    22. Ctrl+F,查找文本
    23. Ctrl+Shift+Space,自动补全代码
    24. Ctrl+空格,代码提示(与系统输入法快捷键冲突)
    25. Ctrl+Shift+Alt+N,查找类中的方法或变量
    26. Alt+Shift+C,最近的更改
    27. Alt+Shift+Up/Down,上/下移一行
    28. Shift+F6,重构 - 重命名
    29. Ctrl+X,删除行
    30. Ctrl+D,复制行
    31. Ctrl+/或Ctrl+Shift+/,注释(//或者/**/)
    32. Ctrl+J,自动代码(例如:serr)
    33. Ctrl+Alt+J,用动态模板环绕
    34. Ctrl+H,显示类结构图(类的继承层次)
    35. Ctrl+Q,显示注释文档
    36. Alt+F1,查找代码所在位置
    37. Alt+1,快速打开或隐藏工程面板
    38. Ctrl+Alt+left/right,返回至上次浏览的位置
    39. Alt+left/right,切换代码视图
    40. Alt+Up/Down,在方法间快速移动定位
    41. Ctrl+Shift+Up/Down,向上/下移动语句
    42. F2 或 Shift+F2,高亮错误或警告快速定位
    43. Tab,代码标签输入完成后,按 Tab,生成代码
    44. Ctrl+Shift+F7,高亮显示所有该文本,按 Esc 高亮消失
    45. Alt+F3,逐个往下查找相同文本,并高亮显示
    46. Ctrl+Up/Down,光标中转到第一行或最后一行下
    47. Ctrl+B/Ctrl+Click,快速打开光标处的类或方法(跳转到定义处)
    48. Ctrl+Alt+B,跳转到方法实现处
    49. Ctrl+Shift+Backspace,跳转到上次编辑的地方
    50. Ctrl+O,重写方法
    51. Ctrl+Alt+Space,类名自动完成
    52. Ctrl+Alt+Up/Down,快速跳转搜索结果
    53. Ctrl+Shift+J,整合两行
    54. Alt+F8,计算变量值
    55. Ctrl+Shift+V,可以将最近使用的剪贴板内容选择插入到文本
    56. Ctrl+Alt+Shift+V,简单粘贴
    57. Shift+Esc,不仅可以把焦点移到编辑器上,而且还可以隐藏当前(或最后活动的)工具窗口
    58. F12,把焦点从编辑器移到最近使用的工具窗口
    59. Shift+F1,要打开编辑器光标字符处使用的类或者方法 Java 文档的浏览器
    60. Ctrl+W,可以选择单词继而语句继而行继而函数
    61. Ctrl+Shift+W,取消选择光标所在词
    62. Alt+F7,查找整个工程中使用地某一个类、方法或者变量的位置
    63. Ctrl+I,实现方法
    64. Ctrl+Shift+U,大小写转化
    65. Ctrl+Y,删除当前行
    66. Shift+Enter,向下插入新行
    67. psvm/sout,main/System.out.println(); Ctrl+J,查看更多
    68. Ctrl+Shift+F,全局查找
    69. Ctrl+F,查找/Shift+F3,向上查找/F3,向下查找
    70. Ctrl+Shift+S,高级搜索
    71. Ctrl+U,转到父类
    72. Ctrl+Alt+S,打开设置对话框
    73. Alt+Shift+Inert,开启/关闭列选择模式
    74. Ctrl+Alt+Shift+S,打开当前项目/模块属性
    75. Ctrl+G,定位行
    76. Alt+Home,跳转到导航栏
    77. Ctrl+Enter,上插一行
    78. Ctrl+Backspace,按单词删除
    79. Ctrl+"+/-",当前方法展开、折叠
    80. Ctrl+Shift+"+/-",全部展开、折叠
    【调试部分、编译】
    1. Ctrl+F2,停止
    2. Alt+Shift+F9,选择 Debug
    3. Alt+Shift+F10,选择 Run
    4. Ctrl+Shift+F9,编译
    5. Ctrl+Shift+F10,运行
    6. Ctrl+Shift+F8,查看断点
    7. F8,步过
    8. F7,步入
    9. Shift+F7,智能步入
    10. Shift+F8,步出
    11. Alt+Shift+F8,强制步过
    12. Alt+Shift+F7,强制步入
    13. Alt+F9,运行至光标处
    14. Ctrl+Alt+F9,强制运行至光标处
    15. F9,恢复程序
    16. Alt+F10,定位到断点
    17. Ctrl+F8,切换行断点
    18. Ctrl+F9,生成项目
    19. Alt+1,项目
    20. Alt+2,收藏
    21. Alt+6,TODO
    22. Alt+7,结构
    23. Ctrl+Shift+C,复制路径
    24. Ctrl+Alt+Shift+C,复制引用,必须选择类名
    25. Ctrl+Alt+Y,同步
    26. Ctrl+~,快速切换方案(界面外观、代码风格、快捷键映射等菜单)
    27. Shift+F12,还原默认布局
    28. Ctrl+Shift+F12,隐藏/恢复所有窗口
    29. Ctrl+F4,关闭
    30. Ctrl+Shift+F4,关闭活动选项卡
    31. Ctrl+Tab,转到下一个拆分器
    32. Ctrl+Shift+Tab,转到上一个拆分器
    【重构】
    1. Ctrl+Alt+Shift+T,弹出重构菜单
    2. Shift+F6,重命名
    3. F6,移动
    4. F5,复制
    5. Alt+Delete,安全删除
    6. Ctrl+Alt+N,内联
    【查找】
    1. Ctrl+F,查找
    2. Ctrl+R,替换
    3. F3,查找下一个
    4. Shift+F3,查找上一个
    5. Ctrl+Shift+F,在路径中查找
    6. Ctrl+Shift+R,在路径中替换
    7. Ctrl+Shift+S,搜索结构
    8. Ctrl+Shift+M,替换结构
    9. Alt+F7,查找用法
    10. Ctrl+Alt+F7,显示用法
    11. Ctrl+F7,在文件中查找用法
    12. Ctrl+Shift+F7,在文件中高亮显示用法
    【VCS】
    1. Alt+~,VCS 操作菜单
    2. Ctrl+K,提交更改
    3. Ctrl+T,更新项目
    4. Ctrl+Alt+Shift+D,显示变化
    <div id="digg" articleid="16362629">
        <dl id="btnDigg" class="digg digg_enable" onclick="btndigga();">
           
             <dt>顶</dt>
            <dd>3</dd>
        </dl>
       
          
        <dl id="btnBury" class="digg digg_enable" onclick="btnburya();">
          
              <dt>踩</dt>
            <dd>0</dd>               
        </dl>
        
    </div>
 <div class="tracking-ad" data-mod="popu_222"><a href="javascript:void(0);" target="_blank">&nbsp;</a>   </div>
<div class="tracking-ad" data-mod="popu_223"> <a href="javascript:void(0);" target="_blank">&nbsp;</a></div>
<script type="text/javascript">
            function btndigga() {
                $(".tracking-ad[data-mod='popu_222'] a").click();
            }
            function btnburya() {
                $(".tracking-ad[data-mod='popu_223'] a").click();
            }
        </script>
<div style="clear:both; height:10px;"></div>


    <div class="similar_article" style="">
            <h4>我的同类文章</h4>
            <div class="similar_c" style="margin:20px 0px 0px 0px">
                <div class="similar_c_t">
                            <label class="similar_cur">
                                <span style="cursor:pointer" onclick="GetCategoryArticles('1156473','DJCKEN','foot','16362629');">Android手机应用开发<em>(39)</em></span>
                            </label>
                </div>
               
                <div class="similar_wrap tracking-ad" data-mod="popu_141" style="max-height:195px;">
                    <a href="http://blog.csdn.net" style="display:none" target="_blank">http://blog.csdn.net</a>
                    <ul class="similar_list fl"><li><em>•</em><a href="http://blog.csdn.net/DJCKEN/article/details/52488700" id="foot_aritcle_52488700undefined9301838300211145" target="_blank" title="Android 4.1/4.1.1 TextView.setText for Html 引发ArrayIndexOutOfBoundsException的问题">Android 4.1/4.1.1 TextView.setText for Html 引发ArrayIndexOutOfBoundsException的问题</a><span>2016-09-09</span><label><i>阅读</i><b>100</b></label></li> <li><em>•</em><a href="http://blog.csdn.net/DJCKEN/article/details/47906129" id="foot_aritcle_47906129undefined7159385385282817" target="_blank" title="关于Android4.4以下版本Webview执行LoadUrl加载js导致键盘隐藏的问题(富文本编辑器)">关于Android4.4以下版本Webview执行LoadUrl加载js导致键盘隐藏的问题(富文本编辑器)</a><span>2015-08-23</span><label><i>阅读</i><b>1279</b></label></li> <li><em>•</em><a href="http://blog.csdn.net/DJCKEN/article/details/45871805" id="foot_aritcle_45871805undefined6340297085230939" target="_blank" title="properties导致空指针的问题">properties导致空指针的问题</a><span>2015-05-20</span><label><i>阅读</i><b>567</b></label></li> <li><em>•</em><a href="http://blog.csdn.net/DJCKEN/article/details/41643725" id="foot_aritcle_41643725undefined867904573974233" target="_blank" title="关于sony等机型拍照后返回重载了Activity的问题">关于sony等机型拍照后返回重载了Activity的问题</a><span>2014-12-01</span><label><i>阅读</i><b>552</b></label></li> <li><em>•</em><a href="http://blog.csdn.net/DJCKEN/article/details/8818644" id="foot_aritcle_8818644undefined7953109303456474" target="_blank" title="Android Gallery获取滑动停止的位置">Android Gallery获取滑动停止的位置</a><span>2013-04-18</span><label><i>阅读</i><b>3150</b></label></li> </ul>

                    <ul class="similar_list fr"><li><em>•</em><a href="http://blog.csdn.net/DJCKEN/article/details/47976195" id="foot_aritcle_47976195undefined90940197077953" target="_blank" title="IDEA Save Actions 类似Eclipse">IDEA Save Actions 类似Eclipse</a><span>2015-08-25</span><label><i>阅读</i><b>308</b></label></li> <li><em>•</em><a href="http://blog.csdn.net/DJCKEN/article/details/46379929" id="foot_aritcle_46379929undefined9162615404567735" target="_blank" title="Android使用WebView从相册/拍照中添加图片">Android使用WebView从相册/拍照中添加图片</a><span>2015-06-05</span><label><i>阅读</i><b>11846</b></label></li> <li><em>•</em><a href="http://blog.csdn.net/DJCKEN/article/details/41898523" id="foot_aritcle_41898523undefined2522983731193027" target="_blank" title="关于Android使用TextView+ImageSpan同一行文字图片居中的问题">关于Android使用TextView+ImageSpan同一行文字图片居中的问题</a><span>2014-12-12</span><label><i>阅读</i><b>6832</b></label></li> <li><em>•</em><a href="http://blog.csdn.net/DJCKEN/article/details/10109585" id="foot_aritcle_10109585undefined28200585298748226" target="_blank" title="IDEA 快捷键笔记">IDEA 快捷键笔记</a><span>2013-08-20</span><label><i>阅读</i><b>971</b></label></li> <li><em>•</em><a href="http://blog.csdn.net/DJCKEN/article/details/8621460" id="foot_aritcle_8621460undefined5708686198763635" target="_blank" title="Android实现精确监听AbsListView滚动至底部示例">Android实现精确监听AbsListView滚动至底部示例</a><span>2013-02-28</span><label><i>阅读</i><b>2742</b></label></li> </ul>
                <a href="http://blog.csdn.net/DJCKEN/article/category/1156473" class="MoreArticle">更多文章</a></div>
            </div>
        </div>    
<script type="text/javascript">
    $(function () {
        GetCategoryArticles('1156473', 'DJCKEN','foot','16362629');
    });
</script>
 <div>
<div class="J_adv" data-view="true" data-mod="ad_popu_206" data-mtp="43" data-order="114" data-con="ad_content_1901" style="width: 960px; height: 90px;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><ins class="adsbygoogle" style="display:inline-block;width:960px;height:90px" data-ad-client="ca-pub-8990951720398508" data-ad-slot="8267689356/3776917242" data-adsbygoogle-status="done"><ins id="aswift_0_expand" style="display:inline-table;border:none;height:90px;margin:0;padding:0;position:relative;visibility:visible;width:960px;background-color:transparent"><ins id="aswift_0_anchor" style="display:block;border:none;height:90px;margin:0;padding:0;position:relative;visibility:visible;width:960px;background-color:transparent"><iframe width="960" height="90" frameborder="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" allowfullscreen="true" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){try{h=s.upd(h,i)}catch(e){}w.location.replace(h)}}" id="aswift_0" name="aswift_0" style="left:0;position:absolute;top:0;"></iframe></ins></ins></ins><script>(adsbygoogle=window.adsbygoogle || []).push({});</script></div> 
      </div>

参考知识库

img

Java SE知识库

img

Java EE知识库

img

Java 知识库

 <dt><span>猜你在找</span></dt>    





<div id="adCollege" style="width: 42%;float: left;"> 
    <script src="http://csdnimg.cn/jobreco/job_reco.js" type="text/javascript"></script> 
    <script type="text/javascript">
        csdn.position.showEdu({
            sourceType: "blog",
            searchType: "detail",
            searchKey: "16362629",
            username: "liuguoyun_123456",
            recordcount: "5",
            containerId: "adCollege" //容器DIV的id。 
        });
    </script> 
<div class="tracking-ad" data-mod="popu_84"><dd style="background:url(http://static.blog.csdn.net/skin/default/images/blog-dot-red3.gif) no-repeat 0 10px; white-space: nowrap;"><a href="http://edu.csdn.net/course/detail/2531" title="【思科CCNA理论专题:5】--Port-Security(端口安全)视频课程" strategy="v4:content" target="_blank">【思科CCNA理论专题:5】--Port-Security(端口安全)视频课程</a></dd><dd style="background:url(http://static.blog.csdn.net/skin/default/images/blog-dot-red3.gif) no-repeat 0 10px; white-space: nowrap;"><a href="http://edu.csdn.net/course/detail/3486" title="【国内首套H3C V7交换机实战课程-9】安全功能配置与管理(上)" strategy="v4:content" target="_blank">【国内首套H3C V7交换机实战课程-9】安全功能配置与管理(上)</a></dd><dd style="background:url(http://static.blog.csdn.net/skin/default/images/blog-dot-red3.gif) no-repeat 0 10px; white-space: nowrap;"><a href="http://edu.csdn.net/course/detail/1961" title="iOS移动开发从入门到精通(Xcode7 &amp; Swift2)" strategy="v4:content" target="_blank">iOS移动开发从入门到精通(Xcode7 &amp; Swift2)</a></dd><dd style="background:url(http://static.blog.csdn.net/skin/default/images/blog-dot-red3.gif) no-repeat 0 10px; white-space: nowrap;"><a href="http://edu.csdn.net/course/detail/1841" title="精通iOS移动开发(Xcode7&amp;Swift2;) 初识Xcode7.0" strategy="v4:content" target="_blank">精通iOS移动开发(Xcode7&amp;Swift2;) 初识Xcode7.0</a></dd><dd style="background:url(http://static.blog.csdn.net/skin/default/images/blog-dot-red3.gif) no-repeat 0 10px; white-space: nowrap;"><a href="http://edu.csdn.net/course/detail/550" title="CCIE专家讲解思科认证网络认证CCNA v2.0网络工程师和网络安全课程" strategy="v4:content" target="_blank">CCIE专家讲解思科认证网络认证CCNA v2.0网络工程师和网络安全课程</a></dd></div></div>  


 <div id="res" data-mod="popu_36" class="tracking-ad" style="width: 42%; float: left; margin-right: 30px; display: none;"><dd style="background:url(http://static.blog.csdn.net/skin/default/images/blog-dot-red3.gif) no-repeat 0 10px;"><a href="http://blog.csdn.net/u014729236/article/details/48262677" title="IntelliJ IDEA 常用快捷键整理" strategy="SearchAlgorithm" target="_blank">IntelliJ IDEA 常用快捷键整理</a></dd><dd style="background:url(http://static.blog.csdn.net/skin/default/images/blog-dot-red3.gif) no-repeat 0 10px;"><a href="http://blog.csdn.net/w21fanfan1314/article/details/12621989" title="Intellij idea 快捷键大全网络收集整理" strategy="SearchAlgorithm" target="_blank">Intellij idea 快捷键大全网络收集整理</a></dd><dd style="background:url(http://static.blog.csdn.net/skin/default/images/blog-dot-red3.gif) no-repeat 0 10px;"><a href="http://blog.csdn.net/shilu89757/article/details/44559663" title="Intellij idea 快捷键整理" strategy="SearchAlgorithm" target="_blank">Intellij idea 快捷键整理</a></dd><dd style="background:url(http://static.blog.csdn.net/skin/default/images/blog-dot-red3.gif) no-repeat 0 10px;"><a href="http://blog.csdn.net/jacky_zh/article/details/53584033" title="intellij idea 工具初体验 设置字体背景色 整理快捷键" strategy="SearchAlgorithm" target="_blank">intellij idea 工具初体验 设置字体背景色 整理快捷键</a></dd></div>
<div id="ad_cen">        
                  <div class="J_adv" data-view="true" data-mod="ad_popu_199" data-mtp="43" data-order="114" data-con="ad_content_1843" style="width: 960px; height: 90px;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><ins class="adsbygoogle" style="display:inline-block;width:960px;height:90px" data-ad-client="ca-pub-8990951720398508" data-ad-slot="8267689356/3115746762" data-adsbygoogle-status="done"><ins id="aswift_1_expand" style="display:inline-table;border:none;height:90px;margin:0;padding:0;position:relative;visibility:visible;width:960px;background-color:transparent"><ins id="aswift_1_anchor" style="display:block;border:none;height:90px;margin:0;padding:0;position:relative;visibility:visible;width:960px;background-color:transparent"><iframe width="960" height="90" frameborder="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" allowfullscreen="true" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){try{h=s.upd(h,i)}catch(e){}w.location.replace(h)}}" id="aswift_1" name="aswift_1" style="left:0;position:absolute;top:0;"></iframe></ins></ins></ins><script>(adsbygoogle=window.adsbygoogle || []).push({});</script></div>
</div>  

<!-- 广告位开始 -->
<div class="J_adv" data-view="true" data-mod="ad_popu_72" data-mtp="61" data-order="114" data-con="ad_content_1937"><script id="popuLayer_js_q" src="http://ads.csdn.net/js/popuLayer.js" defer="" type="text/javascript"></script><div id="location_parent_google"></div><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><div id="layerd_google" style="position: fixed; bottom: 0px; right: 0px; line-height: 0px; z-index: 1000; width: 302px; height: 275px; display: none;"><div class="J_close layer_close" style="display:;background-color:#efefef;padding:0px;color:#333;font:12px/24px Helvetica,Tahoma,Arial,sans-serif;text-align:right;">关闭</div><ins class="adsbygoogle" style="display: inline-block; width: 300px; height: 250px;" data-ad-client="ca-pub-8990951720398508" data-ad-slot="8267689356/2658895482" data-adsbygoogle-status="done"><ins id="aswift_2_expand" style="display:inline-table;border:none;height:250px;margin:0;padding:0;position:relative;visibility:visible;width:300px;background-color:transparent"><ins id="aswift_2_anchor" style="display:block;border:none;height:250px;margin:0;padding:0;position:relative;visibility:visible;width:300px;background-color:transparent"><iframe width="300" height="250" frameborder="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" allowfullscreen="true" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){try{h=s.upd(h,i)}catch(e){}w.location.replace(h)}}" id="aswift_2" name="aswift_2" style="left:0;position:absolute;top:0;"></iframe></ins></ins></ins></div><script>(adsbygoogle=window.adsbygoogle || []).push({});</script><script>  document.getElementById('popuLayer_js_q').onload=function(){      var styObjd=styObj={width:'302px',height:'275px'};window.CSDN.Layer.PopuLayer('#layerd_google',{storageName:'layerd',styleObj:styObjd,total:50,expoire:1000*60});  }</script></div>
<!-- 广告位结束 -->
查看评论
发表评论
  • 用 户 名:
  • liuguoyun_123456
      
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
<div id="ad_bot">
</div>
    <a id="quick-reply" class="btn btn-top q-reply" title="快速回复" style="display:none;">
        <img src="http://static.blog.csdn.net/images/blog-icon-reply.png" alt="快速回复">
    </a>    
<a id="d-top-a" class="btn btn-top backtop" style="display: none;" title="返回顶部" onclick="_gaq.push(['_trackEvent','function', 'onclick', 'blog_articles_huidaodingbu'])">         
     <img src="http://static.blog.csdn.net/images/top.png" alt="TOP">
</a>

                    <div class="clear">
                    </div>
                </div>
posted @ 2017-01-03 17:55  jobs-lgy  阅读(258)  评论(0编辑  收藏  举报