Example 1: Write a function to reverse a string.Example Java code: public static String reverse ( String s ) { int length = s.length(), last =length ....
分类:
其他好文 时间:
2014-08-22 19:42:59
阅读次数:
236
一行命令启动http-server总结:1. python2.x python2 -m SimpleHTTPServer 80002. python3.x python -m http.server 80003. twistd(python) twistd -n web -p 8000 --path...
分类:
Web程序 时间:
2014-08-22 19:41:29
阅读次数:
266
好无力,今天改到了自认为的最优法,还能超时吗???#include#include#define bool int //两个数据的交换void swap(int *a,int *b) { int temp; temp = *a; *a = *b; *b = temp;}//优...
分类:
其他好文 时间:
2014-08-22 17:46:09
阅读次数:
167
今天coding的时候碰到一个异常:ERROR: I/O Error: SSO Failed: Native SSPI library not loaded. Check the java.library.path system property.查了下资料:大部分都是将ntlmauth.dll.....
分类:
数据库 时间:
2014-08-22 16:06:28
阅读次数:
362
//string转xml XmlDocument doc = new XmlDocument(); doc.LoadXml(temp); XmlNodeList nodes1 = doc.GetElementsByTagName("...
分类:
其他好文 时间:
2014-08-22 15:50:18
阅读次数:
186
Sam在看相关PackageManager代码时,无意中发现Android 下提供一个pm命令,通常放在/system/bin/下。这个命令与Package有关,且非常实用。所以研究之。0. Usage:usage: pm [list|path|install|uninstall]pm list p...
分类:
移动开发 时间:
2014-08-22 15:48:28
阅读次数:
262
I found an issue in WIX extension implementation.
Some WIX extension tags write rows to CreateFolder table, e.g.
, , . As the official MSI document says, a patch can be
Not uninstallable if it co...
分类:
其他好文 时间:
2014-08-22 13:02:38
阅读次数:
224
在讨论匿名管道之前,我们先回顾下read和write系统调用以及fgets函数 #include ssize_t read(int fd, void *buf, size_t count);当read成功时,返回值为读到的字符数。当遇见文件结尾时,返回0(也就是什么都读不出来了)。出错,返回-1。—...
分类:
其他好文 时间:
2014-08-22 12:23:36
阅读次数:
224
QPixmap pix1(":/PixmapTest/Resources/Chrysanthemum.jpg"); QPixmap temp(pix1.size()); temp.fill(Qt::transparent); QPainter p1(&temp); p1.setComposition...
分类:
其他好文 时间:
2014-08-22 12:19:06
阅读次数:
651
这两个函数一个是System.out.write()输出字符流,System.out.println()是输出字节流,很简单。看下面这个程序就明白了。//import java.util.*;public class Test { public static void main(String[] a...
分类:
其他好文 时间:
2014-08-22 10:46:55
阅读次数:
154