Package su.mvc.action.image

Examples of su.mvc.action.image.ImageAction


public class ImageBytesResult  implements Result {

    public void execute(ActionInvocation invocation) throws Exception {

        ImageAction action = (ImageAction) invocation.getAction();
        HttpServletResponse response = ServletActionContext.getResponse();

        response.setContentType(action.getContentType());
        response.getOutputStream().write(action.getImageInByte());
        response.getOutputStream().flush();

    }
View Full Code Here

TOP

Related Classes of su.mvc.action.image.ImageAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.