hadoop网盘环境搭建,代码全部过程(9)
// 创建一个新的文件上传处理程序
ServletFileUpload upload = new ServletFileUpload(factory); // 设置最大上传的文件大小 upload.setSizeMax( maxFileSize ); try{
// 解析获取的文件
ListfileItems = upload.parseRequest(request);
// 处理上传的文件
Iteratori = fileItems.iterator();
System.out.println(\); while( i.hasNext () ) {
FileItem fi = (FileItem)i.next(); if( !fi.isFormField () ) { // 获取上传文件的参数
String fieldName = fi.getFieldName(); String fileName = fi.getName();
String fn = fileName.substring( fileName.lastIndexOf(\)+1); System.out.println(\+fn+\); booleanisInMemory = fi.isInMemory(); longsizeInBytes = fi.getSize(); // 写入文件
if( fileName.lastIndexOf(\) >= 0 ){ file = newFile( filePath ,
fileName.substring( fileName.lastIndexOf(\))) ; }else{
file = newFile( filePath ,
fileName.substring(fileName.lastIndexOf(\)+1)) ; } fi.write( file ) ;
System.out.println(\);
System.out.println(\);
41 / 53
//将tomcat上的文件上传到hadoop上
hdfs.copyFile(filePath+\+fn, filePath0+fn);
System.out.println(\);
FileStatus[] list = hdfs.ls(filePath0); request.setAttribute(\,list);
} } }catch(Exception ex) {
System.out.println(ex); } }else{
System.out.println(\);
} } /**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */
protectedvoiddoPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { } }
42 / 53
JobConf conf = HdfsDAO.config(); HdfsDAO hdfs = new HdfsDAO(conf);
request.getRequestDispatcher(\).forward(request, response);
this.doGet(request, response);
文件删除功能:
主要代码:
publicclassDeleteFileServletextends HttpServlet {
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */
protectedvoiddoGet(HttpServletRequest request, HttpServletResponse response) throws
//FileStatus[] list = (FileStatus[])request.getAttribute(\
ServletException, IOException {
String filePath = new String filePath1 = new
43 / 53
String(request.getParameter(\).getBytes(\),\); String(request.getParameter(\).getBytes(\),\);
JobConf conf = HdfsDAO.config();
HdfsDAO hdfs = new HdfsDAO(conf); hdfs.rmr(filePath);
System.out.println(\+filePath+\); System.out.println(\+filePath1+\); FileStatus[] list = hdfs.ls(filePath1); request.setAttribute(\,list); }
文件下载功能:
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */
protectedvoiddoPost(HttpServletRequest request, HttpServletResponse response) throws }
this.doGet(request, response); }
request.getRequestDispatcher(\).forward(request,response);
ServletException, IOException {
44 / 53
主要代码:
publicclass DownloadServlet extends HttpServlet {
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */
protectedvoiddoGet(HttpServletRequest request, HttpServletResponse response) throws
String local = \; String filePath = new String filePath1 = new
45 / 53
privatestaticfinallongserialVersionUID = 1L;
ServletException, IOException {
String(request.getParameter(\).getBytes(\),\); String(request.getParameter(\).getBytes(\),\);
…… 此处隐藏:1004字,全部文档内容请下载后查看。喜欢就下载吧 ……相关推荐:
- [政务民生]2013年公共基础知识热点问题(七)
- [政务民生]检验检测机构资质认定评审准则及释义20
- [政务民生]关于印发重庆市房屋建筑和市政基础设施
- [政务民生]1、隧道洞身开挖支护施工技术交底书
- [政务民生]2015年山东省17地市中考语文试题分类汇
- [政务民生]2-高级会计师资格考试和评审流程图
- [政务民生]2018版中国清分机行业发展分析及前景策
- [政务民生]新课改高中政治探究
- [政务民生]2018-2024年中国新型组合房屋行业投资
- [政务民生]2015年上海市春季高考数学模拟试卷五
- [政务民生]灌砂法及环刀法测压实度(带计算过程)
- [政务民生]运筹学实验2求解非线性规划
- [政务民生]劝学、逍遥游默写(教师卷)
- [政务民生]《运筹学》 - 期末考试 - 试卷A - 答案
- [政务民生]八年级英语下册 Module 6 Hobbies测试
- [政务民生]2019年宪法知识竞赛试题库100题(含答
- [政务民生]自动化英文文献翻译
- [政务民生]公文格式实施细则
- [政务民生]高一地理上册课堂跟踪练习题6
- [政务民生]会计继续教育习题及答案
- 第三章 无约束最优化方法
- 泛读教程第三册答案
- 魏晋南北朝文学
- 幂的运算复习题
- 城市环境问题的成因与治理策略_以社会
- 钢结构行业产业链及竞争分析研究
- 新型热塑性弹性体增韧聚丙烯的研究
- 中国旅游地理B卷试题及答案
- (苏教版)五年级数学上册第三单元测试卷
- 不稳定性心绞痛诊断与治疗
- 俞氏国际后勤职能部门绩效考核办法
- GB7258-2017新标准考试题含答案
- 小学生汉字听写比赛活动方案
- 1.3《平抛运动》学案 教科版必修2
- 2011香港特别行政区公务员考试复习资料
- 考虑水力条件变化的城市给水管网可靠性
- 表面活性剂在油田开发和生产中的应用
- ITT内部培训资料-FI端吸泵的介绍
- 文明守纪,从我做起学生发言稿
- 初中读《聊斋志异》心得体会800字范文




