import java.io.*;import java.util.*;public class io { public static void main(String[] args)throws IOException { splitFile(); mer...
分类:
其他好文 时间:
2014-07-27 10:21:32
阅读次数:
184
java的异常机制这一章,主要讲到了异常类的分类,处理异常中的5个关键字,重写方法时throws异常的规则。异常的捕获和处理能力能体现出一个程序员写的代码的健壮性的强弱。...
分类:
编程语言 时间:
2014-07-26 15:00:30
阅读次数:
256
public void setAccessible(boolean flag) throws SecurityException将此对象的 accessible 标志设置为指示的布尔值。值为 true 则指示反射的对象在使用时应该取消 Java 语言访问检查。值...
分类:
数据库 时间:
2014-07-26 13:55:15
阅读次数:
242
@Override public String execute() throws Exception { if ("none".equals(task)) { HttpServletResponse response = ServletActionContext.getResponse();...
分类:
其他好文 时间:
2014-07-26 00:01:56
阅读次数:
389
1.package org.jui.core.dynamic; public class DynaCompTest { public static void main(String[] args) throws Exception { String fullName = "Dyn...
分类:
编程语言 时间:
2014-07-25 16:42:51
阅读次数:
385
1 public static void main(String[] args) throws Exception{//判断某个时间是否为当前时间 2 String dataStr="2014-07-24 12:16:04"; 3 Date createTi...
分类:
编程语言 时间:
2014-07-24 22:06:52
阅读次数:
311
import java.io.*;import java.util.*; class SplitFile{ public static void main(String[] args) throws Exception { //splitFile(); mer...
分类:
其他好文 时间:
2014-07-24 10:08:43
阅读次数:
234
public class ZipUtil {
public ZipUtil(){
}
/**
* DeCompress the ZIP to the path
* @param zipFileString name of ZIP
* @param outPathString path to be unZIP
* @throws ...
分类:
移动开发 时间:
2014-07-23 22:31:57
阅读次数:
388
一,发布一个webservice,代码如下 package com.hoo.service;public class AsynchronousService { public String execute() throws InterruptedException{ //让当前线程睡眠5钟,展示异步...
分类:
Web程序 时间:
2014-07-23 22:18:57
阅读次数:
322
/* 网页爬虫*/import java.io.*;import java.net.*;import java.util.regex.*;class RegexTest2{ public static void main(String[] args) throws Exception { getMa...
分类:
Web程序 时间:
2014-07-23 20:34:25
阅读次数:
217