- 浏览: 375722 次
- 来自: 北京
最新评论
-
wxpsjm:
好直接
HV000030: No validator could be found for type: java.lang.Integer. -
wxhhbdx:
学习了,对新手来说很不错的教程。
SpringMVC入门 (二) 数值传递 -
xgcai:
正好在学dwr
DWR入门 (二)用户实例
文章列表
REF:http://woshub.com/how-to-repair-uefi-bootloader-in-windows-8/
In this article we will learn how to repair Windows 8 bootloader on a computer with UEFI. The corruption of the Windows 8 bootloader can occur after the installation of the second OS (in Dual Boot configurations), be caused by the err ...
比如一张图片, 地址是http://www.sina.com.cm/dizhi/dizhi/tupian.jpg
想要把这些都去掉, 然后存在硬盘里。
就用
replaceAll("\\/|:|\\.(?!jpg|jpeg|gif)", "")
关于
(?!pattern)
负向预查,在任何不匹配 pattern
的字符串开始处匹配查找字符串。这是一个非获取匹配,也就是说,该匹配不需要获取供以后使用。例如'Windows (?!95|98|NT|2000)' 能匹配
"Windows 3.1" 中的 "Win ...
public class Server
{
//用来存储所有连接上来的客户
private List<ServerThread> clients;
public static void main(String[] args)
{
Server s = new Server();
s.startServer(9988);
}
public void startServer(int port)
{
ServerSocket ss = null;
Socket socket = null;
try
{
...
public class Client
{
public static void main(String[] args)
{
Client c=new Client();
c.receiveMessage();
}
public void receiveMessage(){
Socket s=null;
BufferedReader sbr=null;
try
{
s=new Socket("127.0.0.1",9999);
OutputStream os=s.ge ...
public class HttpClientUtils
{
public static CloseableHttpClient createSSLClientDefault(CookieStore cookies){
SSLContext sslContext=null;
try
{
sslContext=new SSLContextBuilder().loadTrustMaterial(null, new TrustStrategy(){
@Override
public boolean isTrusted(X509Certif ...
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
{
String type=req.getParameter("type");
Enumeration es=req.getHeaderNames();
System.out.println("Request type is : "+type);
while( ...
http://www.blogjava.net/yuanqixun/articles/356710.html
需要将宋体的ttf文件上传到$JAVA_HOME/jre/lib/fonts/simsun.ttc
从某网上爬了数千万的数据,存在文本中。
然后要导入mysql数据库。
悲剧的是数据库和我存数据的服务器不在一个内网里面。。
ping了一下, 19ms的延迟。
于是下面的代码是没用的。
ps = con.prepareStatement(sql);
ps.setString(1, info.getYear())............;
ps.execute();
这种一条条插入的。 平均一条起码要20ms。
没一周这数据插不完。
后来领导告诉我navicat支持批量插入。
于是乎,花了很大功夫,把数据转了一下,弄成navicat的形式。(我是不会设置navica ...
Can't find Maven installation C:\Download\apache-maven-3.0.5-bin\apache-maven-3.0.5
由于系统重装,maven路径改为c:\maven,
preference里面已经设置了路径,下载jar到库里也正常了,但是运行的时候就会出现这个错误。
目前解决方法是右键pom.xml,在run configuration里面配置一下。
1. vim test.sh
加入
#!/bin/sh
clear
echo "Hello, $USER."
2. ./test1.sh执行
1. 首先从官网http://phantomjs.org/下载phantomjs压缩包,解压缩到/root/phantomjs文件夹。
2. 安装依赖
sudo yum install fontconfig freetype libfreetype.so.6 libfontconfig.so.1 libstdc++.so.6
3. 配置环境变量
vi /etc/profile
加入
export PATH=$PATH:/root/phantomjs/bin
PATH=$PATH:$HOME/bin
export PATH
这里要执行 source /etc/profile, 以另刚才的改 ...
http://stackoverflow.com/questions/4031987/how-to-upload-sources-to-local-maven-repository
<project>
...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactI ...
场景如下:
ArrayList<Obj> list
Obj-> createTime, sid.
现在要根据obj的createTime来进行定期清理。(释放内存)
-------------------------
首先想到的方法就是
for(Obj o:list){
if(o.createTime-currentT>xxx){
list.remove(o);
}
}
这个是完全行不通的。这里看一下ArrayList的代码
public boolean remove(Object o) {
if (o == n ...
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.7.3</version>
</dependency>
2014/08/28
今天遇到这种形式,
<div class="ba_info"></div>
<div class="ba_info ba_info2"></div&g ...
今天在客户端调用方法
NodeStatus status=iservice.getNodeStatus().
结果NodeStatus的属性都是null。
进行debug之后,发现服务器端返回的确实是有值的对象。
后来发现原来是因为在客户端,NodeStatus的setter全部被我删除了。
本来是因为逻辑上不需要在客户端使用setter, 结果改了之后竟然不能获取带属性值的对象。。
加上setter问题就解决了。
这里比较郁闷的是webservice没有报任何错误。
=======================
关于boolean值不对应, 可能是因为名字的问题。
比如
p ...