码迷,mamicode.com
首页 >  
搜索关键字:throws    ( 4120个结果
发邮件 和 excel导出中文文件名
/** * 发邮件 * @param email * @param subject * @param body * @throws UnsupportedEncodingException */ public static void sendEm...
分类:其他好文   时间:2014-06-11 11:52:16    阅读次数:195
java.IO
java IO 是以文件相对程序的流向定义的javaIO流可分为三类1、输入流,输出流2、字节流,字符流3、节点流,处理流(这里用到了装饰着模式)public class IOtest { public static void main(String[] args) throws Except...
分类:编程语言   时间:2014-06-11 11:41:53    阅读次数:371
Java基础——异常(2)
throws 和 throw 有什么区别?1、位置不同:throws用在函数上,后面跟的是异常类,可以跟很多个。 throw用在函数内,后面跟的是异常对象。2、功能不同:throws用来声明异常,让调用者知道功能有可能出现问题,并由调用者可以给出预先的处理方式。 throw抛出具体问题对象。执行到t...
分类:编程语言   时间:2014-06-11 07:22:55    阅读次数:239
Java中的反射——(1)什么是反射
Java程序中的各个Java类属于同一类事物,描述这类事物的Java类名就是Class.public class ReflectTest { public static void main(String[] args) throws ClassNotFoundException { String str1 = "abc"; Class cls1 = String.class; Cla...
分类:编程语言   时间:2014-06-09 23:39:33    阅读次数:376
android开发 单元测试
1.测试用例类必须得继承AndroidTestCast类2.测试用例类使用public 修饰3.测试用例的测试方法使用public修饰4.测试用例的测试方法的返回值应该是void5.测试用例中测试方法不应该有任何参数6.测试用例中测试方法必须抛出异常 ,在你的方法加上:throws throwabl...
分类:移动开发   时间:2014-06-08 22:05:50    阅读次数:303
求最大公约数的几种算法分析
题目——求两个整数的最大公约数 思路1、穷举算法 public static voidmain(String[] args) throws IOException { Scannerscanner = new Scanner(System.in); inta = scanner.nextInt(); intb = scanner.nextInt(); System.out.println(...
分类:其他好文   时间:2014-06-07 16:27:13    阅读次数:253
Windows下Java File对象创建文件夹时的一个"坑"
import java.io.File;import java.io.IOException;public class DirCreate { public static void main(String[] args) throws IOException { // TODO ...
分类:编程语言   时间:2014-06-07 10:45:32    阅读次数:380
自定义拦截器
1 2 1、编写一个类,实现com.opensymphony.xwork2.interceptor.Interceptor 3 2、主要实现public String intercept(ActionInvocation invocation) throws Exception{...
分类:其他好文   时间:2014-06-06 16:24:51    阅读次数:257
java异常处理
public void test() throws IOException{ try( BufferedReader br=new BufferedReader(new FileReader("AutoCloseTest.java")); PrintStream ps=new PrintStream...
分类:编程语言   时间:2014-06-05 14:12:26    阅读次数:293
通过直接预分区的方式建表
/*通过直接预分区的方式建表*/private static void printTableRegion(String tableName)throws IOException{ System.out.println("Prtint region of table:"+tableName);/...
分类:其他好文   时间:2014-06-03 14:51:05    阅读次数:207
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!