- 浏览: 464150 次
- 性别:
- 来自: 陕西.西安
-
最新评论
-
gaodadawei:
登录失败,请重试楼主,我目前遇到这样一个错误,claros i ...
James+Claros+intouch2.1配置 -
VerRan:
qq346448412 写道请问。你上一节、 用的ORACLE ...
James+Claros+intouch2.1配置 -
qq346448412:
请问。你上一节、 用的ORACLE数据库、 这一节又用的是MY ...
James+Claros+intouch2.1配置 -
paladin1988:
good,我喜欢..
Hibernate自关联关系 -
lygxy12:
请问,能给163发邮件吗?该怎么配置?我安装上面的操作,发给1 ...
James+Claros+intouch2.1配置
文章列表
Most network programming is done by writing application programs that call
system-provided functions to perform specific network operations. For example,
one function performs a TCP active open, another performs a TCP passive open,
another sends data across a TCP connection, another sets spe ...
https://chrome.google.com/webstore/detail/mfjkgbjaikamkkojmakjclmkianficch
http://baike.baidu.com/view/2460420.html?fromTaglist
http://www.ibm.com/developerworks/cn/web/wa-lo-comet/
package com.datastruct.sort;
import java.io.IOException;
import javax.xml.namespace.QName;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Options;
import org.apache.axis2.context.MessageContext;
import org.apache.axis2.rpc.client.RPCServiceClient ...
package com.datastruct.sort;
/**
* 1. 原理 从第一个数字开始与 其后的进行比较如果当前数值 大于后面的则后移动,直到没有比自己大的。 这样要做 如果数组为大小为n 则需要做n-1次
* 第一次将最大的放在最后,第二次 则将次最大的放在最后 依次类推
* */
public class BubblueSort {
public int[] sort(int[] data) {
/** 其中的一次处理然后在做 */
int temp = 0;
for (int time = 1; time < dat ...
package com.datastruct.sort;
public class SelectSort {
static void exch(int[] a, int i, int j){
int temp = a[i];
a[i] = a[j];
a[j] = temp;
}
static void compExch(int[] a, int i, int j){
if(a[j] < a[i])
exch(a, i, j);
}
static void selectionSort(int[] a, int s ...
1、登录www.iteye.com
输入用户名,密码
2、查看cookie 文件
_javaeye_cookie_id_
1301465273632156
iteye.com/
1536
1658143360
30362590
3569340848
30142112
*
remember_me
yes
iteye.com/
1536
1343169408
30179127
3667630848
30142112
*
login_token
MzM1MjVfMzJmMGUzM2RhNzc3MjdjYWVkNjBmM2RjMzI3ZmJ ...
http://oracle.chinaitlab.com/Special/Oracle_OCP/index.htm
Returns a hash code for this string. The hash code for a String
object is computed as
s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
using int arithmetic, where s[i]
is the ith character of the string, n is the length of the
string, and ^ indicates exponentiation. (The hash value ...
http://c.chinaitlab.com/special/algorithm/Index.html
转自:http://baike.baidu.com/view/3416519.htm
1977年,Merkle与Hellman合作设计了使用背包问题实现信息加密的方法。其工作原理是:假定甲想加密,则先产生一个较易求解的背包问题,并用它的解作为专用密钥;然后从这个问题出发,生成另一个难解的背包问题,并作为公共密钥。如果乙想向甲发送报文,乙就可以使用难解的背包问题对报文进行加密,由于这个问题十分难解,所以一般没有人能够破译密文;甲收到密文后,可以使用易解的专用密钥解密。
但是,在它发表几年后,就找到了攻破它的方法。即使如此,它仍然代表着一类很难问题的算法。
分类
背 ...
参考网上的例子实现一个简单的天气查看功能。 界面包含一个按钮,当点击按钮时 已tips 提示框的方式展现天气信息。
package com.lht.WebService;
import java.io.UnsupportedEncodingException;
import android.app.Activity;
import android.os.Bundle;
import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serializat ...
在网上看了几个关于源码查看的方法但是都不是很清晰,此文列出方法已供大家参考和记录。
1. 下载android 源代码
下面我会提供一份。
2. 在eclipse 中创建 UserLib
打开eclipse preference->java->build Path->User Libraries
创建一个 android 的UserLib 这里命名为 AndroidLib
3. 导入android 的jar包
4. 导入Source.zip
点击 andriod UserLib 树下有一个Sourc ...
http://www.williamhua.com/2009/05/26/xml-parsing-in-android/