`
wutao8818
  • 浏览: 619641 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论
文章列表
引用 Initialization of bean failed; nested exception is java.lang.AbstractMethodError     at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveInnerBean(BeanDefinitionValueResolver.java:230)     at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolve ...
String url = "http://www.abc.com/p.htm?k=v"; URL rurl = new URL(url); rurl.getHost(); // www.abc.com rurl.getFile(); // p.htm?k=v rurl.getPath(); // p.htm rurl.getQuery(); // k=v
HAProxy 可靠、高性能的 TCP/HTTP 负载均衡器 http://haproxy.1wt.eu/
can't connection to mysql server  http://www.cnblogs.com/benben7466/archive/2009/03/16/1413002.html 需排除防火墙问题 注释my.cnf 这行# bind-address = 127.0.0.1 mysql运行了,也在mysql建立帐户,授权了,但是不能远程访问mysql,其实是防火墙的问题,关闭即可 linux 服务器mysql已经配置好,远程连接不上 先确认你已经开始了允许远程访问的权限: ◆为了在其它电脑上能用root用户登录,需进行以下动作: 1、mark@mar ...
Syncro SVN Client 4.2 一个查看SVN的强大工具 在下面的console界面里可以看到执行 命令行 刚学了一招,查看执行版本号之间的代码变更 svn log --revision 5:8 --verbose http://url/project/trunk
手机之家搜索系统架构 http://www.luanxiang.org/blog/archives/605.html DAL 建设 http://www.longker.org/
遇到JDBC乱码 原因很多。数据库表需要设置,JDBC URL也需要设置一下 引用 jdbc:mysql://192.168.200.225:3306/new?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&zeroDateTimeBehavior=convertToNull 这句话放在xml配置文件里是没错的。但是拿到 java 代码里的string里写就会出现乱码了。 原因在 & 符号 &那是在xml里面的写法。 如果是其他地方就直接写 ...
ibatis初学,又只用mysql 今天要用 h2 ibatis 就遇到自增id问题,慌~ 看了它的 Reference Functions 一节 发现有个System Functions NEXTVAL 再看看ORACLE 里面那个写法,有点启发。 再看看h2那个web管理界面里面的sequence赶紧去试了一把。 引用 NEXTVAL NEXTVAL([schemaName, ] sequenceString): long Example: NEXTVAL('TEST_SEQ') 看来h2要一个seq . 所以就先创建了一个seq 引用CREATE SEQUENCE ...
ibm网站上有篇文章写buffer的内部细节不错,但是需要登录它的网站,所以我把它摘出来了。 原文地址:https://www6.software.ibm.com/developerworks/education/j-nio/section5.html .这篇文件已经有中文的翻译了,在ibm的网站上也有,不过还是看原文比较好。整个教程有好几部分,这是其中一个部分。全部的内容在https://www6.software.ibm.com/developerworks/education/j-nio/index.html 可以找到      
micolog 选了micolog 安装 首先需要确定你的python版本是不是2.5.具体我不清楚,似乎GAE就需要这个版本。但是我的2.6 python装了N次也没有出现正常的页面。 另外一个问题就是 index error 每次快update 结束的时候 就报这个错。怎么处理。删除单属性的那些条目就可以了。 引用 - kind: Comment   properties:   - name: entry   - name: date 2个name 就是双属性。 那些单属性的删除后再执行 update 就可以了。 附件里面有正常的index.yaml

Object Streams

    博客分类:
  • io
Data Streams http://java.sun.com/docs/books/tutorial/essential/io/datastreams.html package org; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.FileInputStream; import java.io.FileOutp ...
http://java.sun.com/docs/books/tutorial/essential/io/cl.html The Java platform supports this kind of interaction in two ways: through the Standard Streams and through the Console. java平台支持2种控制台交互方式。1是通过标准的stream 另外一种就是 console Standard Streams InputStreamReader cin = new InputStreamReader(System ...

Scanner

    博客分类:
  • io
Scanner这个类还是挺有用的。 http://java.sun.com/javase/6/docs/api/java/util/Scanner.html public class ScanXan { public static void main(String[] args) throws IOException { Scanner s = null; try { s = new Scanner(new BufferedReader(new FileReader("xanadu.txt") ...
http://java.sun.com/docs/books/tutorial/essential/io/buffers.html Most of the examples we've seen so far use unbuffered I/O. This means each read or write request is handled directly by the underlying OS. This can make a program much less efficient, since each such request often triggers disk access ...
Character Streams http://java.sun.com/docs/books/tutorial/essential/io/charstreams.html public class CopyCharacters { public static void main(String[] args) throws IOException { FileReader inputStream = null; FileWriter outputStream = null; try { inp ...
Global site tag (gtag.js) - Google Analytics