package com.vcredit.ddcash.monitor.sendmail; import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.InputSt ...
分类:
Web程序 时间:
2016-12-02 18:49:37
阅读次数:
273
http://www.jianshu.com/p/6ad7864e005e 先来看这样一个错误: No resource found that matches the given name '@style/Theme.AppCompat.Light' 对于这个错误,相信大部分Android开发者都遇 ...
分类:
移动开发 时间:
2016-12-02 11:39:57
阅读次数:
263
Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be ...
分类:
其他好文 时间:
2016-12-02 07:44:24
阅读次数:
213
modeling by query. secondary index is best on table that has many rows the contain fewer unique values (low cardinality). but, don't index on high-car ...
分类:
其他好文 时间:
2016-12-02 03:27:35
阅读次数:
194
45分钟带你入门Linux(附:笔者在工作室开讨论班录制的视频讲解) 第一部分 熟悉Linux基本操作 一、初识Linux 1.Linux特点 ? 开放性 ? 多用户 ? 多任务 ? 良好的用户界面 ? 设备独立性 ? 丰富的网络功能 ? 可靠的系统安全 ? 良好的可移植性 2.Linux 系统组成 ...
分类:
系统相关 时间:
2016-12-02 02:53:44
阅读次数:
257
DB2中存储过程包括存储过程头和存储过程体 存储过程头create procedure sum(in p_a integer, in p_b integer, out p_s integer) language sql specific sum_abbegin set p_s = p_a + p_b ...
分类:
其他好文 时间:
2016-12-02 02:47:12
阅读次数:
150
一对多实现 1、 实现类 2、 配置文件 3、一对多操作 4、 级联操作(读、理解) save-update:A保存,同时保存B delete:删除A,同时删除B,AB都不存在 delete-orphan:孤儿删除,解除关系,同时将B删除,A存在的。 如果需要配置多项,使用逗号分隔。<set cas ...
分类:
Web程序 时间:
2016-12-02 02:30:13
阅读次数:
193
描述 给定两个整数n和m,计数整数对(a,b)的数目,使得0 <a <b <n,并且(a ^ 2 + b ^ 2 + m)/(ab)是一个整数。 这个问题包含多个测试用例! 输入的第一行是整数N,然后是空白行,后跟N个输入块。 每个输入块采用问题说明中指示的格式。 输入块之间有空行。 输出格式由N个 ...
分类:
移动开发 时间:
2016-12-02 02:06:33
阅读次数:
287
cookie.setPath()的用法 正常的cookie只能在一个应用中共享,即一个cookie只能由创建它的应用获得。1.可在同一应用服务器内共享方法:设置cookie.setPath("/"); 本机tomcat/webapp下面有两个应用:cas和webapp_b, 1)原来在cas下面设置 ...
分类:
其他好文 时间:
2016-12-02 01:46:56
阅读次数:
141
一、切UIView的某个角为圆角 如果需要将UIView的4个角全部都为圆角,做法相当简单,只需设置其Layer的cornerRadius属性即可(项目需要使用QuartzCore框架)。而若要指定某几个角(小于4)为圆角而别的不变时,怎么做呢? 其实很简单,使用UIBezierPath,设置CAS ...
分类:
其他好文 时间:
2016-12-02 01:13:11
阅读次数:
253