一个不错的例子值得细细品味:
下面按照包顺序将代码贴出来供大家参考:
IEmpDAO
package org.lzch.dao;
import java.util.List;
import org.lzch.vo.Emp;
public interface IEmpDAO {
public boolean doCreate(Emp emp)throws Exception;
p...
分类:
编程语言 时间:
2014-05-26 05:58:08
阅读次数:
578
package com.kane.hdfs;
import java.io.InputStream;
import java.net.URL;
import org.apache.hadoop.fs.FsUrlStreamHandlerFactory;
import org.apache.hadoop.io.IOUtils;
public class Test {...
xcode升级导致cocoapods很多奇葩问题
1.pod setup执行后半年没反应
解决办法设置淘宝的镜像
$ gem sources --remove https://rubygems.org/
//等有反应之后再敲入以下命令
$ gem sources -a http://ruby.taobao.org/
检查一下看看
$ gem sources -l*** CURRENT...
分类:
其他好文 时间:
2014-05-26 04:55:46
阅读次数:
236
题目链接:
http://poj.org/problem?id=1182
题目为:
食物链
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 42412
Accepted: 12366
Description
动物王国中有三类动物A,B,...
分类:
其他好文 时间:
2014-05-26 04:53:29
阅读次数:
236
1.工具
puttyhttp://www.chiark.greenend.org.uk/~sgtatham/putty/download.html 压缩版 一会
用到上传工具 psftp。//JDK的安装1.手动在Win7 下下载JDK.rpm文件.http://www.oracle.com/tec...
分类:
系统相关 时间:
2014-05-26 01:46:08
阅读次数:
477
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMap...
分类:
编程语言 时间:
2014-05-24 23:47:55
阅读次数:
408
http://poj.org/problem?id=3463
大致题意:给出一个有向图,从起点到终点求出最短路和次短路的条数之和。
解法:
用到的数组:dis[i][0]:i到起点的最短路,dis[i][1]:i到起点的严格次短路
vis[i][0],vis[i][1]:同一维的vis数组,标记距离是否已确定
sum[i][0]:i到起点的最短路条数,sum[i][1]:...
分类:
其他好文 时间:
2014-05-24 21:50:31
阅读次数:
287
题目:http://poj.org/problem?id=2104
划分树待我好好理解下再写个教程吧,觉得网上的内容一般,,,
模板题:
贴代码:
#include
#include
#include
#include
using namespace std;
#define CLR(a) memset(a,0,sizeof(a))
const int MAXN = 100010...
分类:
其他好文 时间:
2014-05-24 18:10:18
阅读次数:
276
参考:https://docs.python.org/3.4/library/functions.htmlhttps://docs.python.org/2/library/functions.htmlhttp://blog.csdn.net/jgood/article/details/4371991以上链接分别为Python官网的3.4版本的内建方法说明、2.X(指2.6和2.7)版本的内建方法说明、以及JGood对2.X版..
分类:
编程语言 时间:
2014-05-24 15:36:42
阅读次数:
528
https://pythonhosted.org/pysmb/api/smb_SMBConnection.html#examplepysmb的文档1.安装pyasn1https://pypi.python.org/pypi/pyasn1#downloadspythonsetup.pyinstall2.安装pysmbhttps://miketeo.net/wp/index.php/projects/pysmbpythonsetup.pyinstall
分类:
编程语言 时间:
2014-05-24 15:34:36
阅读次数:
734