0

我将文件上传到服务器并发送参数。但我有两个问题。

1 无法发送参数。我愿意:

      handler: function(){
        mapinfo="mapinfo";
        formp.getForm().submit({
        url: url_servlet+'uploadfile',
        params: {file_type: mapinfo},
        success: function(formp, o) {
           alert(o.result.file);
           kad_tab.getStore().reload()
           zoom_store.load();
        }
    })
}

和服务器端:

public class uploadfile extends HttpServlet implements Servlet
{
public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, java.io.IOException {
    response.setCharacterEncoding("UTF-8");
    response.setContentType("text/html");
    String st = request.getParameter("file_type");
    PrintWriter writer = response.getWriter();
    boolean isMultipart = ServletFileUpload.isMultipartContent(request);
    if (!isMultipart) {
            return;
        }          
  FileItemFactory factory = new DiskFileItemFactory();
    ServletFileUpload upload = new ServletFileUpload(factory);
    List<FileItem> list=null;
    String mifpath= "1";
    String path = " ";
    String mif = " ";
    String from = "\\\\";
    String to ="/";
    String error="";
     try{
      list = upload.parseRequest(request);
      Iterator<FileItem> it = list.iterator();
      response.setContentType("text/html");
      while ( it.hasNext() ) 
      {

        FileItem item = (FileItem) it.next();
        File disk = new File("C:/uploaded_files/"+item.getName());

            path = disk.toString();
            String code = new String(path.substring(path.lastIndexOf("."), path.length()).getBytes("ISO-8859-1"),"utf-8");
            if (code.equalsIgnoreCase(".zip"))
            {
                mifpath=path;
                mif = mifpath.replaceAll(from, to);
                item.write(disk);
                //error=unzip.unpack(mif, "C:/uploaded_files");
            }
            else
            {
                error = "Выбранный файл не является архивом zip";

            }
      }
    }

     catch ( Exception e ) {
      log( "Upload Error" , e);
    }
     System.out.println("st="+st);
    writer.println("{success:true, file:'"+error+"'}");
    writer.close();
}
}

但在控制台中仅获取st=null.

2 不能在文件上传面板中使用组合框:

var x = new Ext.Window({
                                title:'Загрузка файла',
                                items:[
                                    formp = new Ext.FormPanel({
                                        fileUpload: true,
                                        width: 350,
                                        autoHeight: true,
                                        bodyStyle: 'padding: 10px 10px 10px 10px;',
                                        labelWidth: 70,
                                        defaults: {
                                            anchor: '95%',
                                            allowBlank: false,
                                            msgTarget: 'side'
                                        },
                                        items:[{
                                    xtype:"combo",
                                    fieldLabel:'Тип файла ',
                                    name:"cb_file",
                                    id:"cb_file",
                                    mode:"local",
                                    typeAhead: false,
                                    loadingText: 'Загрузка...',
                                    store:new Ext.data.SimpleStore({
                                        fields: ['file_name', 'file_type'],
                                            data : [['*.MIF/MID', 'mif'],['*.GPX', 'gpx']]
                                        }),
                                    forceSelection:true,
                                    emptyText:'выбирите тип...',
                                    triggerAction:'all',
                                    valueField:'file_type',
                                    displayField:'file_name',
                                    anchor:'60%'
                                },{
                                            xtype: 'fileuploadfield',
                                            id: 'filedata',
                                            emptyText: 'Выберите файл для загрузки...',
                                            fieldLabel: 'Имя файла',
                                            buttonText: 'Обзор'
                                        }],
                                        buttons: [{
                                            text: 'Загрузить',
                                            handler: function(){
                                                mapinfo="mapinfo";
                                                    formp.getForm().submit({
                                                        url: url_servlet+'uploadfile',
                                                        params: {file_type: mapinfo},

                                                        success: function(formp, o) {

                                                            alert(o.result.file);


                                                            kad_tab.getStore().reload()
                                                            zoom_store.load();
                                                            }
                                                    })
                                            }
                                        }]
                                    })
                                ]   
                             })
                             x.show();

如果我在服务器端执行此操作,则无济于事。例如,如果我上传的不是 zip 档案,我会收到警报,提示它不是 zip 文件,但没有得到它。如果我没有在面板上添加组合框,我会收到此警报。怎么了?

4

1 回答 1

1

那是因为请求是多部分的。然后,您不能使用以下方法读取参数: String st = request.getParameter("file_type");

因为它将始终为空。相反,请使用以下代码段:

List items = upload.parseRequest(request);
Iterator iter = items.iterator();
while (iter.hasNext()) {
    FileItem item = (FileItem) iter.next();

    if (item.isFormField()) {
        processFormField(item);
    } else {
        processUploadedFile(item);
    }
}

关于你的第二个问题,我无法理解。

于 2012-08-30T04:07:57.207 回答