上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: Google 网站有详细的说明: http://code.google.com/intl/zh-CN/apis/maps/documentation/introduction.html 阅读全文
posted @ 2008-11-17 14:05 锐 阅读(252) 评论(0) 推荐(0) 编辑
摘要: nokia 诺基亚nth主题说明 03月 6, 2008 – 1:25 pm 诺基亚的主题元素有些用“Nokia Series 40 Theme Studio”没法打开。我就想解压出来或者简单制作。偶然发现一篇帖子得到启发,可以编辑、制作、解压任何nth的文件。首先将nth的扩展名改成zip就可以解压了,呵呵,没想到竟然是zip文件,唉~然后编辑完改会nth就能放回诺基亚了,我是6288的没问题... 阅读全文
posted @ 2008-05-27 14:15 锐 阅读(4941) 评论(0) 推荐(0) 编辑
摘要: public function LTrim(s : String):String { var i : Number = 0; while(s.charCodeAt(i) == 32 || s.charCodeAt(i) == 13 || s.charCodeAt(i) == 10 || s.charCodeAt(i) == 9) { i++; } return s... 阅读全文
posted @ 2008-05-26 14:12 锐 阅读(989) 评论(0) 推荐(0) 编辑
摘要: org.apache.commons.httpclient.HttpClient hc = new org.apache.commons.httpclient.HttpClient(); hc.getHostConfiguration().setHost("localhost", 80); org.apache.commons.httpclient.methods.Multip... 阅读全文
posted @ 2008-04-24 10:08 锐 阅读(2773) 评论(0) 推荐(0) 编辑
摘要: 从WebBrowser中取得Cookie 的代码 CookieContainer myCookieContainer = new CookieContainer(); string cookieStr = webBrowser1.Document.Cookie; string[] cookstr = cookieStr.Split(';'); ... 阅读全文
posted @ 2008-03-05 11:09 锐 阅读(14372) 评论(2) 推荐(0) 编辑
摘要: //利用批处理文件实现 [DllImport("kernel32.dll")] public static extern uint WinExec(string lpCmdLine, uint uCmdShow); private void button1_Click(object sender, EventArgs e) { string vBatFile = P... 阅读全文
posted @ 2008-03-04 15:55 锐 阅读(1525) 评论(2) 推荐(0) 编辑
摘要: private Encoding GetFileEncoding(Stream s) { Encoding encoding = Encoding.Default; try { /**//* * ANSI: ... 阅读全文
posted @ 2008-03-03 11:23 锐 阅读(568) 评论(0) 推荐(0) 编辑
摘要: 在ASP.Net中实现flv视频转换 导读: 实际上是利用.Net中的Process对象来实现的。 string str=@"d:\test.avi d:\test_allen.flv"; RunFFMpeg(str); //运行FFMpeg的视频解码, public void RunFFMpeg(string strCmd) { //创建并启动一个新进... 阅读全文
posted @ 2008-02-21 11:32 锐 阅读(490) 评论(0) 推荐(0) 编辑
摘要: 最近做一个项目,合作方使用了IIS作为文件服务器. 合作方给我们配置了相关信息: 一个http ULR,用户名,密码;告诉我们只要通过HTTP就可以实现文件上传 由于合作方的服务器我们是操作不了的..仅仅知道是IIS作服务器; 找了很多资料费了九牛二虎之力才知道如果通过IIS来上传文件.特写下来备忘. 搜索了很久没有找到很多相关的资料,最后在微软的网站看到一篇英文的文章,自己再慢慢测试.终于解决... 阅读全文
posted @ 2007-12-31 13:41 锐 阅读(1106) 评论(0) 推荐(0) 编辑
摘要: 可以用记事本编辑,然后将后缀改为.bat 后缀是bat的文件就是批处理文件,是一种文本文件。简单的说,它的作用就是自动的连续执行多条命令,批处理文件的内容就是一条一条的命令。那它有什么用呢? 比如,在启动wps软件时,每次都必须执行 C:\>cd wps C:\WPS>spdos C:\WPS>py C:\WPS>wbx C:\WPS>wps 如果每次用WPS之前都这样执行... 阅读全文
posted @ 2007-12-28 11:20 锐 阅读(7575) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页