博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
web server(protein protection )搭建过程中遇到的问题
阅读量:6346 次
发布时间:2019-06-22

本文共 1879 字,大约阅读时间需要 6 分钟。

1、StringBuffer中append方法有错误

原因分析:是project默认的JRE系统库和配置的jre不匹配。

解决方法:项目属性->Add Libray->JRE System Library->Alternate JRE(选择Sun JDK 1.6.0_13)

2、文件上传问题

mySmartUpload.setAllowedFilesList("txt");  //设置上传文件类型只能是txt格式

文件上传处理过程

  • jsp文件:

    Please select file   

     

  • servlet文件:
    PrintWriter out=response.getWriter();                String wrongmessage = "success!";        SmartUpload mySmartUpload=new SmartUpload();        mySmartUpload.initialize(config, request, response);        mySmartUpload.setMaxFileSize(1024*2048);        //mySmartUpload.setAllowedFilesList("txt");                //bebug        int j = 0;        try        {            mySmartUpload.upload();            for (int i = 0; i < mySmartUpload.getFiles().getCount(); i++)             {                ++j;                com.jspsmart.upload.File file = mySmartUpload.getFiles().getFile(i);                if (file.isMissing())                     continue;            }        }catch(Exception err)        {            wrongmessage="error in upload " + err.getMessage() + " File:"+j+" in line 251";            //out.println("error in upload"+err.getMessage());            //allright=false;            //return;        }        out.print(wrongmessage+" num: " + j);    }

    3、提示错误,serialVersionUID冲突。

 

 

java.io.InvalidClassException: message.RegisterMessage; local class incompatible: stream classdesc serialVersionUID = 5540404719929042644, local class serialVersionUID = -8915824483106432775

serialVersionUID的详细介绍:http://www.cnblogs.com/guanghuiqq/archive/2012/07/18/2597036.html

解决方法:

如果不想定义它,在Eclipse的设置中也可以把它关掉的,设置如下:        

Window ==> Preferences ==> Java ==> Compiler ==> Error/Warnings ==>Potential programming problems        

将Serializable class without serialVersionUID的warning改成ignore即可。

4、对于一些jar包的问题。

这里有一个挺全的jar包网址:

                                                                                                                                                               

2014-09-20

 

本文内容遵从,转载请注明:转自

本文链接地址:

转载于:https://www.cnblogs.com/ddblog/p/3983023.html

你可能感兴趣的文章
Unity3D
查看>>
POJ 2345
查看>>
关于AB包的释放与 Resources.UnloadUnusedAssets的关系
查看>>
vuex 中关于 mapMutations 的作用
查看>>
UvaLive3523 Knights of the Round Table(点双联通分量+二分图染色)
查看>>
c++学习笔记201312
查看>>
有点感受
查看>>
064字符串作业
查看>>
Django之Template
查看>>
react优化总结--(永久更新中)
查看>>
win2003优化大全(转载)
查看>>
剑指offer-包含min函数的栈
查看>>
cocos2d-x 库
查看>>
子页面iframe跨域执行父页面定义的JS方法
查看>>
[AHOI2005]航线规划——LCT维护边双联通分量
查看>>
imacro_screenshot
查看>>
使用Maven和Docker进行持续交付中的版本号管理
查看>>
数据库连接池及并发库Theron
查看>>
原生JS实现瀑布流布局
查看>>
List集合add使用过程中出现的错误
查看>>