这个是还未上传时的界面:
这个是上传完成时的界面:
就是不知道为什么取不到界面
这个是jsp的代码
String path = request.getContextPath();
String basePath = request.getScheme()+”://”+request.getServerName()+”:”+request.getServerPort()+path+”/”;
%>
nbsp;HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”>
var id=0;
var i = 0;
function addressAction(){
$.post(
‘./upload/progress.action’,
function(data){
if(data.currentItem==0){
$(“#message”).text(‘0%’);
}else if(data.state.rate<=100){
SetProgress(data.state.rate);
}else{
$(“#message”).html(“100% 上传完成!”).fadeIn(“slow”);//加载完毕提示
window.clearInterval(id);
}
$(“#img”).html(“”);
var num=data.state.rate/10;
for(var i=1;i<=num;i++){
$(“#img”).append(““);
}
for(var j=1;j<=10-num;j++){
$(“#img”).append(““);
}
},
‘json’
);
}
var progress_id = “loading”;
function SetProgress(progress) {
if (progress) {
$(“#” + progress_id + ” > div”).css(“width”, String(progress) + “%”); //控制#loading div宽度
$(“#” + progress_id + ” > div”).html(String(progress) + “%”); //显示百分比
}
}
function submitForm(){
if($(“#f1″).val()==””){
alert(‘上传文件为空!!!’);
return ;
}
id=window.setInterval(addressAction,10);
$(“form:first”).submit();/*提交第一个表单*/
}
#loading {
width: 400px;
height: 47px;
background: url(“./images/bak.png”) no-repeat;
}
#loading div {
width: 0px;
height: 48px;
background: url(“./images/pro.png”) no-repeat;
color: #fff;
text-align: center;
font-family: Tahoma;
font-size: 18px;
line-height: 48px;
}
#message{
width:200px;
height:35px;
font-family:Tahoma;
font-size:12px;
background-color:#d8e7f0;
border:1px solid #187CBE;
display:none;
line-height:35px;
text-align:center;
margin-bottom:10px;
margin-left:50px;
}
enctype=”multipart/form-data” target=”hidden_frame”>
File:
上传进度条的action
public class FileProgressAction extends ActionSupport {
private State state;
public State getState() {
return state;
}
public void setState(State state) {
this.state = state;
}
@Override
public String execute() throws Exception {
HttpSession session = ServletActionContext.getRequest().getSession();
this.state = (State) session.getAttribute(“state”);
if(state==null){
System.out.println(“action is null”);
state = new State();
state.setCurrentItem(0);
}else{
Double a=Double.parseDouble(state.getReadedBytes()+””);
Double b=Double.parseDouble(state.getTotalBytes()+””);
double result=a/b*100;
state.setRate((int)result);
}
return SUCCESS;
}
}
上传完成的action 返回值就在这里
public class FileProgressUploadAction extends ActionSupport{
private File file;
private String fileFileName;
private String fileContentType;
private String flag=”===============”;
public String getFlag() {
return flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public File getFile() {
return file;
}
public void setFile(File file) {
this.file = file;
}
public String getFileFileName() {
return fileFileName;
}
public void setFileFileName(String fileFileName) {
this.fileFileName = fileFileName;
}
public String getFileContentType() {
return fileContentType;
}
public void setFileContentType(String fileContentType) {
this.fileContentType = fileContentType;
}
@Override
public String execute(){
try {
System.out.println(“file:”+file);
InputStream is=new FileInputStream(file);
String root=ServletActionContext.getRequest().getRealPath(“/upload”);
System.out.println(“root:”+root);
System.out.println(“name:”+this.fileFileName);
System.out.println(“type:”+this.fileContentType);
File destFile=new File(root,this.fileFileName);
OutputStream os=new FileOutputStream(destFile);
byte [] b=new byte[1024*1024*10];
int length=0;
while(true){
length=is.read(b);
if(length break;
os.write(b,0,length);
}
setFlag(“SUCCESS”);
is.close();
os.close();
}catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(“=====================”);
return SUCCESS;
}
}
帖子比较长希望好心人帮我看看吧,想了好久没找出什么原因
回复讨论(解决方案)
这个是struts.xml 配置文件
/index.jsp
/error.jsp
name=”requestParser” class=”com.zjg.listtener.MyMultiPartRequest”
scope=”default” optional=”true” />
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3092452.html