使用了极光推送的 jar 包项目在从 SVN 中检出后,如果不重新对 jar 包和 Bulid Path 进行配置就会抛出java.lang.NoClassDefFoundError: cn.jpush.android.api.JPushInterface的错误,进行如下操作即可消除这种错误:删除 ...
分类:
移动开发 时间:
2014-08-26 11:15:45
阅读次数:
189
在TCP连接开始到结束连接,之间可能会多次传输数据,也就是服务器和客户端之间可能会在连接过程中互相传输多条消息。理想状况是一方每发送一条消息,另一方就立即接收到一条,也就是一次write对应一次read。但是,现实不总是按照剧本来走。MINA官方文档节选:TCP guarantess deliver...
分类:
Web程序 时间:
2014-08-26 11:02:47
阅读次数:
346
题目链接:
huangjing
题意:
题意:有很多条轨道,但是这些轨道在特定的时间内会关闭,求出从起点到终点的最小时间。
思路:
【1】首先建图比较麻烦,最开始我模拟度数,但是一直是错的,看了几个小时还是错的,最后参考别人的,果断暴力,巧妙的引入now变量。。
【2】然后就是求最短路了。。时间很难求。。就是在一个地方比较难弄,就是这条路可以走。所以在开启时间和达到temp的时间中...
分类:
其他好文 时间:
2014-08-26 09:53:25
阅读次数:
240
在win平台上Eclipse中启动Tomcat时,报如下错误,原因是java.library.path中找不到Tomcat的tcnative-1.dll库,才会报出TheAPRbasedApacheTomcatNativelibrarynotfound信息:TheAPRbasedApacheTomcatNativelibrarywhichallowsoptimalperformancein
productionenvironmentswasnotf..
分类:
其他好文 时间:
2014-08-26 03:08:45
阅读次数:
281
今天在导入公司的一个小demo时候发现了一个很有意思的错误。
An internal error occurred during: "Launching New_configuration". Path for project
must have only one segment.
于是上网搜寻了一下怎么解决:
具体的解决方法有两种:
一、Run Confi...
分类:
移动开发 时间:
2014-08-26 00:33:05
阅读次数:
240
Write a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character '.'.You may assume that there will be o...
分类:
其他好文 时间:
2014-08-26 00:18:35
阅读次数:
290
Available commands:ascii Set transfer mode to ASCIIbinary Set transfer mode to binarycd path ...
分类:
其他好文 时间:
2014-08-26 00:16:45
阅读次数:
504
settings里设置好media_rootimport osHERE = os.path.dirname(os.path.dirname(__file__))MEDIA_ROOT = os.path.join(HERE, "media").replace('\\', '/')MEDIA_URL =...
分类:
其他好文 时间:
2014-08-26 00:10:55
阅读次数:
456
To follow the path: look to the master,(寻找大师) follow the master,(跟随大师) walk with the master,(与大师同行) see through the master,(观摩大师) become the master.(成...
分类:
其他好文 时间:
2014-08-26 00:06:05
阅读次数:
231
自己写一些小代码的时候总是用fprintf来写log,感觉这样不太科学,还是写一个通用的简单带log level的log类,以后就拿来复用吧。这个类实现了非常简单的功能:如果指定了log文件path和name创建一个log文件,并将各种level的写入文件中,否则都打印到屏幕,格式如下:
[DEBUG] : xxxxx
[WARN] : xxxx
[MSG] : xxxxx
代码:
//...
分类:
其他好文 时间:
2014-08-25 22:57:15
阅读次数:
274