- 浏览: 110456 次
- 性别:
- 来自: 广州
最新评论
-
fuyu_oo:
多谢 正需要 用的第一种 java自带的
java中XML格式的字符串4读取方式的简单比较 -
QQ371496669:
不是原创呢,那就请把原创的地址放出来
搭建 maven服务器(repository)
文章列表
.title{
width:331px;
white-space:nowrap;
word-break:keep-all;
overflow:hidden;
text-overflow:ellipsis;
}
<span class=title>客户端解决标题显示太长省略多余部分并加省略号的样式</span>
<div class=title>客户端解决标题显示太长省略多余部分并加省略号的样式</div>
/**
* 把char串转成utf8编码,保证汉文文档名不会乱码
*
* @param s
* @rechanging
*/
public static String toUtf8String(String s) {
StringBuffer sb = new StringBuffer();
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if (c >= 0 && c <= 255) {
sb.append(c); ...
01.<html>
02. <head>
03. <meta http-equiv="Content-Type" content="text/html;charset=GBK"/>
04. <script type="text/javascript" src="./jquery-1.4.4.js"></script>
05. <style type="text/css" ...
使用JDBC插入大量数据的性能测试
关键字: 性能测试
使用jdbc向数据库插入100000条记录,分别使用statement,PreparedStatement,及PreparedStatement+批处理3种方式进行测试:
//1.使用statement插入100000条记录
public void exec(Connection conn){
try {
Long beginTime = System.currentTim ...
-Xms512M -Xmx768M -XX:MaxPermSize=512M
public Set<CPBid> getBids() {
return Collections.unmodifiableSet(bids);
}
SuppressWarnings("unused")
private void setBids(Set<CPBid> bids) {
this.bids = bids;
}
把set设置成private
http://www.cn-cuckoo.com/2010/05/08/eclipse-adt-1618.html
Restrictions.eq():equal,=
Restrictions.allEq(): 参数为Map对象,使用key/value进行多个等于的对比,相当于多个 Restrictions.eq()的效果
Restrictions.gt():greater-than,<
Restrictions.lt():less-than,<
Restrictions.le:less-equal,<=
Restrictions.between():对应SQL的between子句。
...
定义:可以不加声明就在JSP页面脚本(Java程序片和Java表达式)中使用的成员变量
JSP共有以下9种基本内置组件(可与ASP的6种内部组件相对应):
1.request对象
客户端的请求信息被封装在request对象中,通过它 ...
str=Test.class.getResource("/").getPath();
System.out.println("----"+str);
try {
//str=URLEncoder.encode(str,"UTF-8");
System.out.println("----"+str);
str=URLDecoder.decode(URLDecoder.decode(str,"UTF-8"),"UTF-8");
System.out. ...
public void test(){
InputStream ips=this.getClass().getResourceAsStream("/oracle.properties");
Properties properties=new Properties();
try {
properties.load(ips);
System.out.println(properties.getProperty("jdbc.url"));
} catch (IOException e) {
// TODO Auto-ge ...
XMLOutputter outputter = new XMLOutputter();
Format format = Format.getPrettyFormat(); // 格式化文档
format.setEncoding("GBK"); // 由于默认的编码是utf-8,中文将显示为乱码,所以设为gbk
format.setTextMode(TextMode.PRESERVE);
outputter.setFormat(format);
byte[] data = new byte[1024];
StringBuilder xml ...