摘要: http://blog.latermoon.com/?p=878先描述下基本概念,标准的iPhone应用是没有后台运行的,要实现实时推送消息到手机,需要借助Apple提供的APNS服务。iPhone会和APNS服务器保持长连接,每台iPhone针对每个App都会有一个唯一Token,要向一台手机发送... 阅读全文
posted @ 2013-12-26 18:04 dingxiaoyue 阅读(200) 评论(0) 推荐(0) 编辑
摘要: http://ramosli.iteye.com/blog/1940843前段时间,仔细研究了APNS的文档,把一些关键的地方记录了下来,弄懂这些对于理解APNS的规则,至关重要。1. If APNs attempts to deliver a notification but the device... 阅读全文
posted @ 2013-12-26 11:54 dingxiaoyue 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 题目:http://acm.hdu.edu.cn/showproblem.php?pid=2546import java.util.Scanner;public class Main { public int max(int a,int b){ return a>b?a:b; } public... 阅读全文
posted @ 2013-12-25 22:55 dingxiaoyue 阅读(122) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/tlq1988/article/details/9612237 首先说明一下,本文只是介绍一些容易被开发者忽视,而导致性能低下问题。并不是介绍如何向苹果设备成功发送一条消息,这里假设所有阅读者已经能够向苹果服务器发送消息,并且成功接收,只是发送效率比较低,并... 阅读全文
posted @ 2013-12-25 17:04 dingxiaoyue 阅读(273) 评论(0) 推荐(0) 编辑
摘要: Description:辰辰是个天资聪颖的孩子,他的梦想是成为世界上最伟大的医师。为此,他想拜附近最有威望的医师为师。医师为了判断他的资质,给他出了一个难题。医师把他带到一个到处都是草药的山洞里对他说:“孩子,这个山洞里有一些不同的草药,采每一株都需要一些时间,每一株也有它自身的价值。我会给你一段时... 阅读全文
posted @ 2013-12-23 21:32 dingxiaoyue 阅读(178) 评论(0) 推荐(0) 编辑
摘要: public class PacketDemo1 { int V; int T; int f[]; int w[];//价值 int c[];//体积 ... 阅读全文
posted @ 2013-12-23 20:40 dingxiaoyue 阅读(109) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner;public class Hanoi { int count=0; public void hanoi(int n,char A,char B,char C){ //把n个盘子移动到c count++; if(n==1){ System... 阅读全文
posted @ 2013-12-21 22:05 dingxiaoyue 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 一:组件知识点JTextField: 作用: 定义文本域,只支持单行输入。 使用: 定义文本域: JTextField jtf=new JTextField(20); //20为列数(列:近似平均字符宽度,它与平台有关) 获取值: String jtfText=jtf.getText(); 清空文本... 阅读全文
posted @ 2013-12-21 00:20 dingxiaoyue 阅读(229) 评论(0) 推荐(0) 编辑
摘要: import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;impo... 阅读全文
posted @ 2013-12-15 17:49 dingxiaoyue 阅读(201) 评论(0) 推荐(0) 编辑
摘要: package shiyan;import java.util.LinkedList;import java.util.Queue;import java.util.Scanner;public class GraphMartix { class Vertext{ char data; ... 阅读全文
posted @ 2013-12-14 10:58 dingxiaoyue 阅读(666) 评论(0) 推荐(0) 编辑