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
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
使用DOM方法来遍历一个文档你有一个HTML文档要从中提取数据,并了解这个HTML文档的结构。将HTML解析成一个Document之后,就可以使用类似于DOM的方法进行操作。示例代码: @Test public void getData() throws IOException{ ...
分类:
Web程序 时间:
2014-07-16 17:57:27
阅读次数:
284
public List getSplits(JobContext job) throws IOException { long minSize = Math.max(getFormatMinSplitSize(), getMinSplitSize(job)); long ...
分类:
其他好文 时间:
2014-07-16 00:19:43
阅读次数:
324
@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
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
1.java中throw和throws:throw用在方法内部实际抛出异常的时候;throws用在方法...
分类:
编程语言 时间:
2014-07-12 23:55:58
阅读次数:
344
今天在pdf和excel中都实现了在浏览器弹出下载框
将之前在网上查找的生成excel表格代码稍微修改下:
public class CreateSimpleExcelToDisk {
/**
* @功能:手工构建一个简单格式的Excel
*/
private static List getNews() throws Exception
{
List data = new A...
分类:
编程语言 时间:
2014-07-12 16:57:35
阅读次数:
267