背景交代:在做图片水印时候引入了两个包文件,这两个包是JDK自带的私有包,不能用Maven库里下载,因此笔者手动将rt和jce两个工具jar文件拷贝到本地的Maven库中,如下图
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;然后在pom配置文件里写上...
分类:
其他好文 时间:
2014-06-18 12:20:45
阅读次数:
245
JDBC 存储过程 调用 CallableStatement...
分类:
数据库 时间:
2014-06-18 12:20:07
阅读次数:
285
linux下安装最新版subversion,代码:
[root@localhost subversion-1.8.9]#
./configure --prefix=/usr/local/subversion --with-apxs=/usr/local/apache2/bin/apxs --with-apr=/usr/local/apr --with-apr-util=/us...
分类:
系统相关 时间:
2014-06-18 12:19:21
阅读次数:
275
题目21:有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13...求出这个数列的前20项之和。
1.程序分析:请抓住分子与分母的变化规律。
2.程序源代码:
main()
{
int n,t,number=20;
float a=2,b=1,s=0;
for(n=1;n<=number;n++)
{
s=s+a/b;
t=a;a=a+b;b=t;/*这部分是程序的关键...
分类:
其他好文 时间:
2014-06-18 11:44:33
阅读次数:
176
1、自信心
要对自己有信心,相信自己行。无论是在面对自考,还是在学习中,这点至关重要。不要被困难吓倒,是我们应培养的素质。去做就好了,其他的都是纸老虎。
2、全局观
要有全局观,合理制定计划。有了计划,就不会放纵自己,也可以慢慢改掉拖延症的坏习惯。比如:督促提醒自己每周更新今目标进度,这样,就不会再怠慢学习了。要有全局观,不能只想着当下,要考虑如何做才能长远的受益。...
分类:
其他好文 时间:
2014-06-18 11:19:15
阅读次数:
165
程序代码:
#include
using namespace std;
class Complex
{
public:
Complex( )//定义默认构造函数初始化复数
{
real=0;
imag=0;
}
//使用初始化表初始化复数
Complex(dou...
分类:
其他好文 时间:
2014-06-18 11:22:29
阅读次数:
264
这是一个蛋疼的节奏,以前写的代码现在失效了。
jquery 判断checkbox 是否被选中,刚开始我是这样写的,而且没问题
$("#ziduana").attr("checked")=="checked"
后来竟然失效了,
后来试了
$("ziduana").attr("checked")==true , $("#ziduana").is(":checked")
其实这三种判断...
分类:
Web程序 时间:
2014-06-18 12:23:16
阅读次数:
238
求一个大数N^N的值的最右边的数字,即最低位数字。
简单二分法求解就可以了。
不过注意会溢出,只要把N % 10之后,就不会溢出了,不用使用long long。
#include
int rightMost(int n, int N)
{
if (n == 0) return 1;
int t = rightMost(n / 2, N);
t = t * t % 10;;
...
分类:
Web程序 时间:
2014-06-18 11:21:53
阅读次数:
243
我们常常在开发的时候,通过获取系统已启动的服务来判断该服务器是否还需要再启动。
而本文将介绍android设备中已启动的服务,并判断某一服务是启动
1.根据ACTIVITY_SERVICE获取系统服务
activityManager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
2.获取系统中正在运行的服务
runningList = activityManager.getRunningServices(30);//代表我们希望返回的服...
分类:
移动开发 时间:
2014-06-18 12:01:50
阅读次数:
247
Description
The Broken Pedometer
The Problem
A marathon runner uses a pedometer with which he is having problems. In the pedometer the symbols are represented by seven s...
分类:
其他好文 时间:
2014-06-18 12:31:09
阅读次数:
203
字符串初始化 1、初始化 let someString = "Some string literalvalue"
let wiseWords = "\"Imagination is moreimportant than knowledge\" -Einstein" let dollarSign = "\x24"...
分类:
其他好文 时间:
2014-06-18 12:30:29
阅读次数:
257
人们都说扁平化是从IOS和WindowsPhone那么吹过来的邪风,但是不可否认:扁平化是我见过的最舒服、最自然的表现方式。从开发角度上来讲,扁平化的设计可以使得我们从许多屏幕适配和尺寸调节的工作中解放出来(虽然只是那么一点点),更加关注功能......
分类:
移动开发 时间:
2014-06-18 12:01:05
阅读次数:
258
C - ID Codes
Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld
& %llu
Submit Status
Appoint description:
System Crawler (2014-05-12)
Description
ID Cod...
分类:
其他好文 时间:
2014-06-18 11:30:56
阅读次数:
283
使用UIImagePickerControlle这个类,用它来打开摄像头和本地照片库。找到一个好的办法也是比较简单的方法来将选择好的图片显示我们想要的UIImageView上...
分类:
其他好文 时间:
2014-06-18 11:37:58
阅读次数:
182
题目
Given a digit string, return all possible letter combinations that the number could represent.
A mapping of digit to letters (just like on the telephone buttons) is given below.
In...
分类:
其他好文 时间:
2014-06-18 12:03:16
阅读次数:
227