博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
idea快捷生成
阅读量:5076 次
发布时间:2019-06-12

本文共 1406 字,大约阅读时间需要 4 分钟。

列模式:

  shift+alt+insert进入列选择模式,可选择一列或者多列

  shift+alt+insert退出列选择模式

 

大小写转换:

  Ctrl + Shift + U

 

循环:

  iter  增强版for循环

List
list = new ArrayList<>();for (int i : array) { }

 

  itar 生成array for代码块

int array [] = new int [10];for (int i = 0; i < array.length; i++) { }

 

  itco 生成Collection迭代 

 

List
list = new ArrayList<>();for (Iterator
iterator = list.iterator(); iterator.hasNext(); ) { String next = iterator.next(); }

 

  iten 生成enumeration遍历

  itit  生成iterator 迭代

  itli 生成List的遍历

  ittok 生成String token遍历

  itve 生成Vector数组迭代

 

itaws 生成Axis2 web service调用:

try {       MyServiceStub stub = new MyServiceStub();       stub.sayHelloWorldFrom();  } catch (Exception ex) {       ex.printStackTrace();  }

 

itws 生成 Axis web service调用:
try {    MyServiceLocator locator = new MyServiceLocator();      Activator service = locator.get();      // If authorization is required           //((MyService_Soap_BindingStub)service).setUsername("user3");      //((MyService_Soap_BindingStub)service).setPassword("pass3");      // invoke business method      service.businessMethod();  } catch (javax.xml.rpc.ServiceException ex) {      ex.printStackTrace();  } catch (java.rmi.RemoteException ex) {      ex.printStackTrace();  }

 

 
 
 
 

 

posted on
2018-12-20 10:49 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/yangzc-7/p/10147688.html

你可能感兴趣的文章
关于django模型语法里面的一些坑。系统报错:Unknown command: 'validate' Type 'manage.py help' for usage....
查看>>
图片保存到本机(链接)
查看>>
python读写文件write和flush
查看>>
extjs中model的HasMany和belongTo读取xml数据的用法
查看>>
linux C访问mysql 基础
查看>>
LeetCode N-Queens II
查看>>
JSP作业3-金字塔
查看>>
Generate BKS File( Bouncy Castle KeyStore)
查看>>
obdg反汇编破解crackme
查看>>
Python作业1 登录程序
查看>>
js弹出模态与非模态页面
查看>>
POJ - 3090 gcd水题
查看>>
第四讲 深入介绍信号与槽
查看>>
.gitignore梳理
查看>>
Lucene/Solr搜索引擎开发笔记 - 写作方向调整
查看>>
JavaScript 数据类型小结
查看>>
-webkit-overflow-scrolling:touch iosBug
查看>>
HDU2028:Lowest Common Multiple Plus
查看>>
辞树的QAQ水题(字符串统计,思维)
查看>>
python自动化之路 day5-1 paramiko模块
查看>>