大家好,第一次写有点正规的博客,以前都是随手复制几下。为了打LOL,我写快点,代码我都复制在最下面了,并且写了大量的注释。 首先我写jquery插件,喜欢这么写(好处有很多,以后在讲,哈哈,看过jQuery源码应该知道): (function(root,factory,plug,undefined) ...
分类:
Web程序 时间:
2017-02-19 21:17:35
阅读次数:
216
Session session = a.getSessionShell("user", "pwd", "host"); Channel channel = session.openChannel("shell"); OutputStream outS = channel.getOutputStrea... ...
分类:
Web程序 时间:
2017-02-19 12:11:08
阅读次数:
471
//使用new关键字创建对象的缺点是耦合度太高,工厂设计模式利用Java的反射机制来实例化对象降低了这种耦合度package cn.buaa; import java.util.Date; interface Fruit{ public void eat(); } class Apple imple... ...
分类:
编程语言 时间:
2017-02-18 20:06:06
阅读次数:
197
1 public class CopyTextTest_2 { 2 3 private static final int BUFFER_SIZE = 1024; 4 public static void main(String[] args) { 5 6 FileReader fr = null; ... ...
分类:
其他好文 时间:
2017-02-18 14:35:03
阅读次数:
158
public class myActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setConte ...
分类:
Web程序 时间:
2017-02-18 14:27:17
阅读次数:
179
try 测试代码块的错误。 catch 语句处理错误。 throw 创建并跑出错误。 下面是一个实例: ...
分类:
Web程序 时间:
2017-02-18 09:50:38
阅读次数:
242
原则:如果该功能内部可以将问题处理,用try,如果处理不了,交由调用者处理,这是用throws 区别: 后续程序需要继续运行就try 后续程序不需要继续运行就throws 如果JDK没有提供对应的异常,需要自定义异常。 区别: 后续程序需要继续运行就try 后续程序不需要继续运行就throws 如果 ...
分类:
其他好文 时间:
2017-02-16 23:28:18
阅读次数:
204
A:DateFormat类的概述 DateFormat 是日期/时间格式化子类的抽象类,它以与语言无关的方式格式化并解析日期或时间。是抽象类,所以使用其子类SimpleDateFormat B:SimpleDateFormat构造方法 public SimpleDateFormat() public ...
分类:
其他好文 时间:
2017-02-16 22:26:40
阅读次数:
283