码迷,mamicode.com
首页 >  
搜索关键字:throws    ( 4120个结果
java 数据压缩
1.public static void main(String[] args) throws Exception { String cont = ""; String cont2=jm(yjy(cont)); if(cont.equals(cont2)){...
分类:编程语言   时间:2014-07-18 19:37:13    阅读次数:278
两个日期相差的天数
1 // 两个日期相差的天数2 public int differDays(String startDateString, String endDateString)3 throws ParseException {4 SimpleDateFormat...
分类:其他好文   时间:2014-07-18 09:01:58    阅读次数:218
JSP---网页计数器(数据存在服务器的文本文件,防web应用程序关闭后数据丢失,防刷数据)
1、建立进行读写文件的java类//写文件public static void WriteFile(String filename,long counter) throws IOException {PrintWriter out=new PrintWriter(new FileWriter(fil...
分类:Web程序   时间:2014-07-18 00:38:17    阅读次数:238
Jsoup-数据抽取
使用DOM方法来遍历一个文档你有一个HTML文档要从中提取数据,并了解这个HTML文档的结构。将HTML解析成一个Document之后,就可以使用类似于DOM的方法进行操作。示例代码: @Test public void getData() throws IOException{ ...
分类:Web程序   时间:2014-07-16 17:57:27    阅读次数:284
Yarn下Map数控制
public List getSplits(JobContext job) throws IOException { long minSize = Math.max(getFormatMinSplitSize(), getMinSplitSize(job)); long ...
分类:其他好文   时间:2014-07-16 00:19:43    阅读次数:324
Spring MVC 文件下载时候 发现IE不支持
@RequestMapping("download") public ResponseEntity download(Long fileKey) throws IOException { HttpHeaders headers = new HttpHeaders(); ...
分类:编程语言   时间:2014-07-14 23:17:07    阅读次数:260
反射 第一课 基础
package cn.itcast.day2;public class ReflectTest { public static void main(String[] args) throws Exception { String str1 = "abc"; Class cls1 = str1.g.....
分类:其他好文   时间:2014-07-13 20:39:12    阅读次数:224
IO FileWriter FileReader 学习
import java.awt.Frame; import java.io.*; public class filewriter { /** * @param args */ public static void main(String[] args) throws IOException{ // TODO Auto-generated method stub //tes...
分类:其他好文   时间:2014-07-13 16:25:35    阅读次数:227
java异常详解
1.java中throw和throws:throw用在方法内部实际抛出异常的时候;throws用在方法...
分类:编程语言   时间:2014-07-12 23:55:58    阅读次数:344
java生成excel表格和pdf并实现下载弹出框
今天在pdf和excel中都实现了在浏览器弹出下载框 将之前在网上查找的生成excel表格代码稍微修改下: public class CreateSimpleExcelToDisk { /** * @功能:手工构建一个简单格式的Excel */ private static List getNews() throws Exception { List data = new A...
分类:编程语言   时间:2014-07-12 16:57:35    阅读次数:267
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!