欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

测试以下

程序员文章站 2022-03-15 19:39:14
...

测试测试

 

public void testGetLog()throws Exception{
		Device device = Device.getInstance() ;
		List<GeneralLogInfo> resultList = device.getAllLogData() ;
		System.out.println("记录数="+resultList.size()) ;
		PrintWriter out = new PrintWriter(new FileOutputStream("F:\\temp\\loglist.txt")) ;
		for(GeneralLogInfo g : resultList){
			out.println(g.getEnrollNum()+"\t"+g.getVerifyMode()+"\t"+g.getInoutMode()+"\t"+g.getName()+"\t"+g.getTimeStr()+"\t"+g.getTime()) ;
		}
		out.close() ;
		System.out.println("执行完毕") ;
	}

 

相关标签: F#