文件上传 1.上传单个文件2.上传多个文件1.上传单个文件实现步骤: (1)导入一个Jar包:commons-io-1.3.2.jar。只所以要导入这个Jar包,是因为要用到一个工具类FileUtil。若不使用此工具类,就无需导入此包了。(2)把form表单的enctype设置为:“multipar...
分类:
Web程序 时间:
2014-10-11 13:12:55
阅读次数:
305
上传文件时经常需要做文件类型判断,例如图片、文档等,普通做法是直接判断文件后缀名,而文艺青年为了防止各种攻击同时也会加上使用文件头信息判断文件类型。原理很简单:用文件头判断,直接读取文件的前2个字节即可。 1 public class FileUtil { 2 /** 3 * by...
分类:
其他好文 时间:
2014-08-21 17:02:04
阅读次数:
217
private static void sendMail(String mail, String mailContext) { try { String context = FileUtil.getFileContent("lostpassEmail.html"); ...
分类:
编程语言 时间:
2014-08-18 18:06:02
阅读次数:
258
游戏引擎熟悉程度cocos2dx 3.x 新增 1.console 很有用的调试工具,可以debug scene的节点结构,fileutil里的信息,模拟触屏点击等.window上需要安装http://joncraton.org/blog/46/netcat-for-windows/来连接2.ev....
分类:
移动开发 时间:
2014-08-07 07:14:49
阅读次数:
218
## 简介 我想在Java工具中,文件操作应该也是使用相当频繁的,但是Java对文件的操作由于牵涉到流,所以较为繁琐,各种Stream也是眼花缭乱,因此大部分项目里的util包中我想都有一个FileUtil的类,而本类就是对众多...
分类:
其他好文 时间:
2014-07-22 08:28:35
阅读次数:
6679
publicStringgetDeptOuId(StringopenId)throwsIOException{
StringdeptId="";
//存储信息的文件的绝对路径
StringcsvPath=FileUtil.getWorkingPath()
.resolve(ConfigUtil.getConfig().get("idmappings")).toString();
System.out.print(csvPath);
//此处可以用..
分类:
其他好文 时间:
2014-07-03 15:04:05
阅读次数:
191