免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2037 | 回复: 0
打印 上一主题 下一主题

Struts 查看文件内容功能 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-12-19 16:38 |只看该作者 |倒序浏览

1.Action 代码
/*
* $Id: ShowFileAction.java 471754 2006-11-06 14:55:09Z husted $
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.    See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.    The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.    You may obtain a copy of the License at
*
*    http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.    See the License for the
* specific language governing permissions and limitations
* under the License.
*/

package org.apache.struts.webapp.validator;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.InputStream;
import java.io.InputStreamReader;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.commons.logging.LogFactory;
import org.apache.commons.logging.Log;
/**
* Action which retrieves a file specified in the parameter
* and stores its contents in the request, so that they
* can be displayed.
*/

public class ShowFileAction extends Action {
        /** Logging Instance. */
        private static final Log log = LogFactory.getLog(ShowFileAction.class);
        public ActionForward execute(ActionMapping mapping,
                                                                 ActionForm form,
                                                                 HttpServletRequest request,
                                                                 HttpServletResponse response)
                                                    throws Exception {
                // Get the file name
                String fileName = mapping.getParameter();
                StringBuffer fileContents = new StringBuffer();
                if(fileName != null) {
                        InputStream input = servlet.getServletContext().getResourceAsStream(fileName);
                        if (input == null) {
                                log.warn("File Not Found: "+fileName);
                        } else {
                                InputStreamReader inputReader = new InputStreamReader(input);
                                char[] buffer = new char[1000];
                                while (true) {
                                        int lth = inputReader.read(buffer);
                                        if (lth  
                                                break;
                                        } else {
                                                fileContents.append(buffer, 0, lth);
                                        }
                                }
                        }
                } else {
                        log.error("No file name specified.");
                }
                // Store the File contents and name in the Request
                request.setAttribute("fileName", fileName);
                request.setAttribute("fileContents", fileContents.toString());
                return mapping.findForward("success");
        }
}
分析:

String fileName = mapping.getParameter();
其中mapping 是ActionMapping 对象,是ActionConfig的子对象。 其中ActionConfig封装了Struts-config.xml 中的配置信息。

inputStream input = servlet.getServletContext().getResourceAsStream(fileName);
每个Web应用程序都是一个独立的Servlet容器,每个Web应用程序分别用一个ServletContext对象。ServletContext对象包含在ServletConfig对象中,
调用ServletConfig.getServletContext()方法获取ServletContext对象。
1、    getResourcePath    返回一个包含该目录和文件路径名称的Set集合
2、    getResource        返回映射到资源上的URL对象。
3、    getResourceAsStream 返回连接到某资源上的InputStream对象


InputStreamReader inputReader = new InputStreamReader(input);
需要重新包装成字符处理。

【2】配置文件
         
         
                 path="/showFile.jsp" />
        

通过传递不同的parameter,读取不同的文件。

【3】在JSP页面 读取信息
     
        File:  scope="request" />
         
         
                 scope="request" filter="true"/>
         
         
   

bean:write 标签 有个filter属性。如果为true 的话,则表示
将把输出内容中的特殊HTML符号作为普通字符串来显示;如果filter属性为false,则不会把输出内容中的HTML符号转化为普通字符串.

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/21344/showart_2126016.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP