摘要:
junit的使用并不很难,然而要书写一个好的testcase却并非易事。一个不好的testcase往往是既浪费了时间,也起不了实际的作用。相反,一个好的testcase,不仅可以很好的指出代码中存在的问题,而且也可以作为代码更准确的文档,同时还在持续集成的过程中起非常重要的作用。在此给出书写testcase时需要注意的几点:- 测试的独立性:一次只测试一个对象,方便定位出错的位置。这有2层意思:......
摘要:
如果在socket中有下面这种情况发生,就不能使用,一般的方法读取socket中的字节socket socket=new socket(ip,port); socket.setsendbuffersize(1); socket.getoutputstream().write("nihaoddddddddddddddd".getbytes()); socket.getoutpu......
java中文内部乱码处理
在jsp中,中文乱码常会让人心乱如麻.一般的解决方案一.本页显示问题"<%@ page contenttype="text/html;charset=gb2312"%>"二.提交问题鉴于此问题,你可以将读出来的字符串进行转换,这很简单:str = request.getparameter("s");str = new string(str.getbytes("iso-8859-1"),"gbk");或者设置request.setcharacterencoding("gbk");
jsp1.jsp建立 【程序编程相关:Java调用系统执行程序(OS Comm】
然而,你遇到这种情况吗,使用out.println是中文,systemout.println是乱码,看下面的例子 【推荐阅读:怪异的hibernate WrongCl】
...
下一页 摘要:
yet another framework?you may be thinking "not another framework." why should you bother to read this article, or download the spring framework, when there are already many open source (and......