摘要: java 上传文件 如果不依赖框架的话 要利用 Apache 中几个jar文件来处理 1、 给表单设置enctype属性,其值为 "multipart/form-data",另外,提交方式必须是post。 2、 在服务器端,不能够直接使用request.getParameter方法来获得数据。 只能 阅读全文
posted @ 2014-08-28 10:59 god bless you 阅读(752) 评论(0) 推荐(1) 编辑
摘要: public static Object copy(Object obj) throws Exception{ Class classType = obj.getClass(); // 利用无参构造一个对象 Object copyOj = classType.getConstructo... 阅读全文
posted @ 2014-08-28 10:58 god bless you 阅读(371) 评论(0) 推荐(0) 编辑