Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2339544
  • 博文数量: 321
  • 博客积分: 3440
  • 博客等级: 中校
  • 技术积分: 2992
  • 用 户 组: 普通用户
  • 注册时间: 2007-05-24 09:08
个人简介

我就在这里

文章分类

全部博文(321)

文章存档

2015年(9)

2014年(84)

2013年(101)

2012年(25)

2011年(29)

2010年(21)

2009年(6)

2008年(23)

2007年(23)

发布时间:2013-01-10 21:49:54

A:如何使用zlib模块来进行压缩解压了? Q:1.使用zlib.compress可以压缩字符串。使用zlib.decompress可以解压字符串。 压缩解压字符串示范代码:import zlibmessage = 'witch which has which witches wrist watch'compressed = zlib.compress(message) decompressed = zlib.decompress(compressed) print 'original:', repr(message) print 'compr......【阅读全文】

阅读(3391) | 评论(0) | 转发(0)

发布时间:2013-01-09 21:52:25

本方法可以实现在任何时候,即无论你的窗口是不是当前获得焦点的窗口,还是处于系统图标区,只要用户按下热键,都将触发窗口中的事件,在本例中实现窗口的状态切换。  1、首先我们必须声明Windows API的外部函数:  FUNCTION Integer GlobalAddAtom(ref string lpString) LIBRARY "kernel32.dll" ALIAS FOR "GlobalAddAtomA" FUNCTION ulong RegisterHotKey(ulong hwnd,ulong id,ulong fsModifiers,ulong vk) LIBRARY "use......【阅读全文】

阅读(940) | 评论(0) | 转发(1)

发布时间:2013-01-08 16:36:31

转自:http://wuhongyu.iteye.com/blog/8067911、字符串转inputStream   Java代码  String string;  //......  InputStream is = new ByteArrayInputStream(string.getBytes());     2、InputStream转字符串   Java代码  ByteArrayOutputStream&......【阅读全文】

阅读(1196) | 评论(0) | 转发(0)

发布时间:2013-01-08 16:36:00

   函数声明    Function long SHGetSpecialFolderLocation (Long hwndOwner, Integer nFolder, ref Long ppidl) library "shell32.dll"    Function long SHGetPathFromIDList(long pidl, ref String szPath) library "shell32.dll" Alias for "SHGetPathFromIDListA......【阅读全文】

阅读(748) | 评论(0) | 转发(0)

发布时间:2013-01-08 08:38:00

   函数声明    Function long SHGetSpecialFolderLocation (Long hwndOwner, Integer nFolder, ref Long ppidl) library "shell32.dll"    Function long SHGetPathFromIDList(long pidl, ref String szPath) library "shell32.dll" Alias for "SHGetPathFromIDListA......【阅读全文】

阅读(3471) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册